At a Glance
...
By convention, we use lower snake case for most of our naming schemes. For example, these documents were created under elec_281_add_basic_docs
. This lets us keep our work organized. See our Git Workflow for more information.
New Project - Hello World
...
Code Block |
---|
# Build and run the project on x86
make run PROJECT=hello_world PLATFORM=x86
# Build and run the project on STM32F0xx (discovery board)
# PLATFORM=stm32f0xx is implied
# PROBE=cmsis is normally implied, override for Discovery boards
make program PROJECT=hello_world PROBE=stlink-v2 |
...
With your code workring, we want to make sure your code matches our Coding Standards. We use two tools for that:
...