STM32 SD Card Manager is a program written in C++ for turning an STM32L476RG into a bridge for writing data from a PC to an SD Card through UART.
The commands are heavily inspired from the Linux CLI commands(cd, ls, echo, cat, ...)
Communication of the SD card and STM32 is established through SPI.
Listing items inside directory path/dir1:
ls path/dir1Changing into another directory:
cd path/dir1- cat
- cd
- clear
- pwd
- cp
- mkdir
- rmdir
- echo
- ls
- mv
- rm
- touch
- Install the STM32CubeIDE for VSCode
- Build the project
- Start debugging using STLink
Pull requests are welcome! Preferably the creation of an issue before-hand would be great too.