https://github.com/libopencm3/libopencm3-template
Simple empty template to base your poject on
https://github.com/libopencm3/libopencm3-template
Last synced: 24 days ago
JSON representation
Simple empty template to base your poject on
- Host: GitHub
- URL: https://github.com/libopencm3/libopencm3-template
- Owner: libopencm3
- License: other
- Created: 2018-08-29T13:55:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-17T09:40:09.000Z (over 1 year ago)
- Last Synced: 2024-03-26T11:17:34.745Z (about 1 year ago)
- Language: Makefile
- Size: 8.79 KB
- Stars: 78
- Watchers: 7
- Forks: 57
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Easy "clone and go" repository for a libopencm3 based project.
# Instructions
1. git clone --recurse-submodules https://github.com/libopencm3/libopencm3-template.git your-project
2. cd your-project
3. make -C libopencm3 # (Only needed once)
4. make -C my-projectIf 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)# Directories
* my-project contains your application
* my-common-code contains something shared.# As a template
You should replace this with your _own_ README if you are using this
as a template.