Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tekjar/nim-f3discovery
Highlevel pacakge to play with f3 discovery board using nim lang
https://github.com/tekjar/nim-f3discovery
Last synced: about 1 month ago
JSON representation
Highlevel pacakge to play with f3 discovery board using nim lang
- Host: GitHub
- URL: https://github.com/tekjar/nim-f3discovery
- Owner: tekjar
- License: mit
- Created: 2017-12-26T05:35:22.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-29T04:47:35.000Z (about 7 years ago)
- Last Synced: 2024-12-17T08:30:06.305Z (about 1 month ago)
- Language: C
- Size: 25.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nim-f3discovery
Highlevel pacakge to play with f3 discovery board using nim lang#### DEMO INSTRUCTIONS
---------------------* Clone this repo run these commands to setup the directory for development
```
make download
make initialize
make cube
```Also change `NIM_PATH` to your nim installation path in `Makefile`
* Compile blinky
```
nim c -c --gc:none --cpu:arm --os:standalone --deadCodeElim:on --dynlibOverride:stm32f3 blinky.nim
```* Create binary to flash from generated c sources
```
make
```* Flash
```
st-flash write blinky.bin 0x8000000
```