Easy "clone and go" repository for a libopencm3 based project.
- git clone --recurse-submodules https://github.com/libopencm3/libopencm3-template.git your-project
- cd your-project
- make -C libopencm3 # (Only needed once)
- make -C my-project
If you have an older git, or got ahead of yourself and skipped the --recurse-submodules
you can fix things by running git submodule update --init
(This is only needed once)
- my-project contains your application
- my-common-code contains something shared.
You should replace this with your own README if you are using this as a template.