diff --git a/boards/beagleplay/zephyr-cc1352-development.rst b/boards/beagleplay/zephyr-cc1352-development.rst index a9e1dde8363653dc6ac6258855537ffe94c60a04..5039a1170a5ad2704fc755a5c5174f31677f465b 100644 --- a/boards/beagleplay/zephyr-cc1352-development.rst +++ b/boards/beagleplay/zephyr-cc1352-development.rst @@ -1,209 +1,62 @@ -.. _beagleconnect-zephyr: +.. _beagleplay-zephyr-development: -BeagleConnect Freedom & Zephyr +BeaglePlay & Zephyr Development ############################### -Develop for BeagleConnect Freedom with Zephyr -********************************************** +BeaglePlay includes a `Texas Instruments CC1352P7 wireless microcontroller <https://www.ti.com/product/CC1352P7>`_ +that can be programmed using the `Linux Foundation Zephyr RTOS <https://www.zephyrproject.org/>`_. Developing directly in Zephyr will not be ultimately required for end-users -who won't touch the firmware running on BeagleConnect™ Freedom and will instead -use the BeagleConnect™ Greybus functionality, but is important for early +who won't touch the firmware running on the CC1352 on BeaglePlay™ and will instead +use the provided wireless functionality. However, it is important for early adopters as well as people looking to extend the functionality of the open source design. If you are one of those people, this is a good place to get started. -Equipment to begin development -============================== +Install the latest software image for BeaglePlay +************************************************* -There are many options, but let's get started with one recommended set for the beta users. +Download and install the Debian Linux operating system image for BeaglePlay. -Required --------- - -* beta-kit - * Seeed Studio BeagleBone® Green Gateway - - * 3x BeagleConnect™ Freedom board, antenna, U.FL to SMA cable, SMA antenna and USB Type-A to Type-C cable - - * 1x MikroE ID Click - -* microSD card (6GB or larger) - -* microSD card programmer - -Recommended ------------ - -* `12V power brick <https://smile.amazon.com/TMEZON-Power-Adapter-Supply-2-1mm/dp/B00Q2E5IXW>`_ - -* `USB to TTL 3.3V UART adapter <https://smile.amazon.com/Converter-Terminated-Galileo-BeagleBone-Minnowboard/dp/B06ZYPLFNB>`_ - -* Ethernet cable and Internet connection - -* 2x USB power adapters - -* `BME280-based Weather Click <https://www.mikroe.com/weather-click>`_ - -* `iAQ-Core-based Air Quality 2 Click <https://www.mikroe.com/air-quality-2-click>`_ - -Optional --------- - -* x86_64 computer running Ubuntu 20.04.3 LTS - - -Install the latest software image for BeagleBone Green Gateway -============================================================== - -Download and install the Debian Linux operating system image for the Seeed -BeagleBone® Green Gateway host. - -#. Download the special mikroBUS/Greybus BeagleBoard.org Debian image from - `here <https://rcn-ee.net/rootfs/debian-mikrobus-armhf/>`_. Pick the most - recent directory and select the file beginning with **bone-** and ending with - **.img.xz**. Today that file is - **bone-debian-11.2-iot-mikrobus-armhf-2022-03-04-4gb.img.xz**. +#. Download the BeagleBoard.org Debian image from + `here <https://`_. These instructions were validated with **TBD.img.xz**. #. Load this image to a microSD card using a tool like Etcher. -#. Insert the microSD card into the Green Gateway. - -#. Power BeagleBone Green Gateway via the 12V barrel jack. - -#TODO: describe how to know it is working - -Other systems -------------- +#. Insert the microSD card into BeaglePlay. -.. important:: +#. Power BeaglePlay via the USB-C connector. - If you are using the image above, none of the instructions in this section are required. +.. note:: -#. Update the system. - .. code-block:: bash - - sudo apt update + #TODO: describe how to know it is working -#. Install all BeagleConnect™ management software. - .. code-block:: bash +Log into BeaglePlay +********************************* - sudo apt install -y \ - beagleconnect beagleconnect-msp430 \ - git vim \ - build-essential \ - cmake ninja-build gperf \ - ccache dfu-util device-tree-compiler \ - make gcc libsdl2-dev \ - libxml2-dev libxslt-dev libssl-dev libjpeg62-turbo-dev \ - gcc-arm-none-eabi libnewlib-arm-none-eabi \ - libtool-bin pkg-config autoconf automake libusb-1.0-0-dev \ - python3-dev python3-pip python3-setuptools python3-tk python3-wheel +Please either plug in a keyboard, monitor and mouse or :code:`ssh` into the board. We can point +somewhere else for instructions on this. - .. code-block:: bash - - echo "export PATH=$PATH:$HOME/.local/bin" >> $HOME/.bashrc - - .. code-block:: bash - - source $HOME/.bashrc - -#. Reboot - .. code-block:: bash - - sudo reboot - -#. Install BeagleConnect™ flashing software - .. code-block:: bash - - pip3 install -U west - -#. Reboot - .. code-block:: bash - - sudo reboot - - -Log into BeagleBone Green Gateway -================================= - -These instructions assume an x86_64 computer running Ubuntu 20.04.3 LTS, but any -computer can be used to connect to your BeagleBone Green Gateway. - -#. Log onto the Seeed BeagleBone® Green Gateway using :code:`ssh`. - * We need IP address, Username, and Password to connect to the device. - * The default IP for the BeagleBone hardware is :code:`192.168.7.2` - * The default Username is :code:`debian` & Password is :code:`temppwd` - * To connect you can simply type :code:`$ ssh debian@192.168.7.2` and when - asked for password just type :code:`temppwd` - * Congratulations, You are now connected to the device! -#. Connect to the `WiFi <https://forum.beagleboard.org/t/debian-11-x-bullseye-monthly-snapshots/31280>`_ - * Execute :code:`sudo nano /etc/wpa_supplicant/wpa_supplicant-wlan0.conf` - and provide the password :code:`temppwd` to edit the configuration file - for the WiFi connection. - * Now edit the file (shown below) under the :code:`network={...}` - section you can set you :code:`ssid` (WiFi name) and :code:`psk` (Wifi - Password). - - .. code-block:: - - ctrl_interface=DIR=/run/wpa_supplicant GROUP=netdev - update_config=1 - #country=IN - network={ - ssid="WiFi Name" - psk="WiFi Password" - } - - * Now save the file with :code:`CTRL+O` and exit with :code:`CTRL+X`. - * Check if the connection is established by executing :code:`$ ping 8.8.8.8` - you should see something like shown below. - - .. code-block:: bash - - debian@BeagleBone:~$ ping 8.8.8.8 - PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data. - 64 bytes from 8.8.8.8: icmp_seq=1 ttl=118 time=10.5 ms - 64 bytes from 8.8.8.8: icmp_seq=2 ttl=118 time=5.72 ms - 64 bytes from 8.8.8.8: icmp_seq=3 ttl=118 time=6.13 ms - 64 bytes from 8.8.8.8: icmp_seq=4 ttl=118 time=6.11 ms - ... - - * If everything goes well, you are ready to update your system and install - new applications for beagleconnect. - -.. note: - - If you are facing some issue during boot then you can try debugging the - boot session with a USB to serial interface cable such as those made by FTDI - plugged into J10 with the black wire of the FTDI cable toward the Ethernet - connector. Application like tio/minicom/putty can be used to make the connection - establishment procedure easy. - -.. note: - - #TODO#: Simplify and elaborate on this section, add boot session debugging walkthrough - -Install Zephyr development tools on BeagleBone Green Gateway -============================================================ +Install Zephyr development tools on BeaglePlay +************************************************************ #. Download and setup Zephyr for BeagleConnect™ .. code-block:: bash cd - west init -m https://github.com/jadonk/zephyr --mr bcf-sdk-3.1.0-rebase bcf-zephyr - cd $HOME/bcf-zephyr + west init -m https://git.beagleboard.org/beagleplay/zephyr-beagle-cc1352 --mr sdk zephyr-beagle-cc1352-sdk + cd $HOME/zephyr-beagle-cc1352-sdk west update west zephyr-export pip3 install -r zephyr/scripts/requirements-base.txt echo "export CROSS_COMPILE=/usr/bin/arm-none-eabi-" >> $HOME/.bashrc - echo "export ZEPHYR_BASE=$HOME/bcf-zephyr/zephyr" >> $HOME/.bashrc - echo "export PATH=$HOME/bcf-zephyr/zephyr/scripts:$PATH" >> $HOME/.bashrc - echo "export BOARD=beagleconnect_freedom" >> $HOME/.bashrc + echo "export ZEPHYR_BASE=$HOME/zephyr-beagle-cc1352-sdk/zephyr" >> $HOME/.bashrc + echo "export PATH=$HOME/zephyr-beagle-cc1352-sdk/zephyr/scripts:$PATH" >> $HOME/.bashrc + echo "export BOARD=beagleplay_cc1352" >> $HOME/.bashrc source $HOME/.bashrc -Build applications for BeagleConnect Freedom on BeagleBone Green Gateway -======================================================================== +Build applications for BeaglePlay CC1352 +********************************************* Now you can build various Zephyr applications