Description here...
- gcc-arm-none-eabi
- cmake
- make
- python3
- any serial monitor (tio for example)
sudo apt install cmake build-essential gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib
sudo apt install python3 python3-hid python3-serial python3-tqdmmkdir build
(cd build && cmake .. && make freertos_shell)./backup.sh./flash.shtio -b 115200 /dev/ttyUSB0Currently, printf without float support. I float is required use next:
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -u _printf_float -u _scanf_float")...