osd-contiki/cpu/stm32w108/README.txt

23 lines
528 B
Plaintext
Raw Normal View History

2013-07-11 17:50:15 +02:00
Building instructions.
In order to build your applications you need to find out the right cpu revision for the board you are using.
2013-07-15 18:22:07 +02:00
Valid STM32W_CPUREV values are CC or xB
2013-07-11 17:50:15 +02:00
Examples:
The MB851RevD board has a cpu with code
stm32w 108CCU7
2013-07-15 18:22:07 +02:00
so CC is your STM32W_CPUREV value and the command is
make TARGET=mbxxx STM32W_CPUREV=CC ...
2013-07-11 17:50:15 +02:00
or
The MB851RevC board has a cpu with code
stm32w 108CBU6
2013-07-15 18:22:07 +02:00
so xB is your STM32W_CPUREV value.
make TARGET=mbxxx STM32W_CPUREV=xB ...
2013-07-11 17:50:15 +02:00
NOTE: if the last word is B you need to use x as wildcard.