At a Glance
...
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:
...