This repository contains example projects that demonstrate the features of T3 Gemstone boards.
All details related to the project can be found at https://docs.t3gemstone.org/en/boards/o1/peripherals/introduction. Below, only a summary of how to perform the installation is provided.
user@host:$ ./setup.sh2. After the installation is successful, activate the jetify-devbox shell to automatically install tools such as AstralUV, Qt6 Libraries, etc.
user@host:$ devbox shellToolchain includes tools that are needed for cross compiling projects such as gcc, g++, ld, etc. It also
includes a sysroot which contains libraries for the target system.
📦 devbox:examples> task fetch📦 devbox:examples> PROJECT=serial task clean build 📦 devbox:examples> task clean buildmcu project has examples that run in two R5F real-time cores and two C7x DSP cores.
You don't need them if you are planning on running only Linux on your T3 Gemstone board.
You need to fetch TI compilers and RTOS SDK if you want to compile MCU examples.
These tools take approximately 7GB of disk space.
After the fetch operation is done, MCU project can be compiled like any other project.
📦 devbox:examples> task fetch-ti
📦 devbox:examples> PROJECT=mcu task clean buildMCU projects to compile are defined as MCU_TARGETS variable in .env file. If you have another MCU project
that you would like to compile, add absolute or relative path of the project's makefile directory to MCU_TARGETS
variable.
MCU_TARGETS="
ipc_rpmsg_echo_linux/j722s-evm/c75ss0-0_freertos/ti-c7000
ipc_rpmsg_echo_linux/j722s-evm/c75ss1-0_freertos/ti-c7000
ipc_rpmsg_echo_linux/j722s-evm/main-r5fss0-0_freertos/ti-arm-clang
ipc_rpmsg_echo_linux/j722s-evm/mcu-r5fss0-0_freertos/ti-arm-clang
path/to/another/target/mcu-r5fss0-0_nortos/ti-arm-clang
"Which peripherals project uses (GPIO, I2C, UART, etc.) and their configuration are defined in .syscfg files.
SysConfig GUI tool is used for adding new peripherals or changing Pin Mux for existing ones.
To launch SysConfig for a MCU project change SYSCONFIG_TARGET variable to the desired project. You can edit that
variable inside .env file or pass it as env variable to task command.
SYSCONFIG_TARGET=ipc_rpmsg_echo_linux/j722s-evm/main-r5fss0-0_freertos/ti-arm-clang task sysconfig📦 devbox:examples> task py-notebook