Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jiahaoxiang2000/panduola
https://github.com/jiahaoxiang2000/panduola
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jiahaoxiang2000/panduola
- Owner: jiahaoxiang2000
- Created: 2024-04-24T09:01:51.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-07-29T03:06:12.000Z (5 months ago)
- Last Synced: 2024-07-30T02:08:03.337Z (5 months ago)
- Language: C
- Size: 8.13 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## msh
Use the `msh` shell to transmit data via UART. You can do this by running the following command in your terminal:
```shell
minicom -D /dev/ttyACM0
```## Download the program
- Start by using `scons` to create the CMake project. If you haven't installed `scons`, you can follow the instructions in this [link](https://github.com/RT-Thread/env).
```shell
scons --target=cmake
```
- Next, use `cmake` to build the project. For this step, we recommend using the Visual Studio Code CMake extension.
- Finally, use `openocd` to download the program to the board. If you haven't installed `openocd` yet, you can follow the instructions provided in this [link](https://github.com/openocd-org/openocd).```shell
openocd -f st_b-l475e-iot01a.cfg -c "program build/rtthread.elf verify reset exit"
```