contiki/cpu/stm32w108
2013-07-11 17:56:17 +02:00
..
dev Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
e_stdio Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
hal Fixed mbxxx platform 2013-07-11 17:56:17 +02:00
lib New HAL and SimpleMAC for STM32W108. 2011-03-22 19:35:49 +01:00
simplemac New HAL and SimpleMAC for STM32W108. 2011-03-22 19:35:49 +01:00
small-printf Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
board-sensors.h Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
cfs-coffee-arch.c Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
cfs-coffee-arch.h Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
clock.c Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
elfloader-arch.c Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
gnu-stm32w108.ld Fixed mbxxx platform 2013-07-11 17:56:17 +02:00
gnu-stm32w108CC.ld Fixed mbxxx platform 2013-07-11 17:56:17 +02:00
gnu-stm32w108xB.ld Fixed mbxxx platform 2013-07-11 17:56:17 +02:00
gnu.ld Fixed mbxxx platform 2013-07-11 17:56:17 +02:00
iar-cfg-coffee.icf New HAL and SimpleMAC for STM32W108. 2011-03-22 19:35:49 +01:00
iar-cfg.icf New HAL and SimpleMAC for STM32W108. 2011-03-22 19:35:49 +01:00
leds-arch.c Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
Makefile.stm32w108 Fixed mbxxx platform 2013-07-11 17:56:17 +02:00
mtarch.h Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
rand.c Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
README.txt Fixed mbxxx platform 2013-07-11 17:56:17 +02:00
rtimer-arch.c Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
rtimer-arch.h Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
slip-uart1.c Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
uip-arch.c Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00
watchdog.c Cleanup and refactoring of the STM32w port 2013-03-18 13:31:26 +01:00

Building instructions.

In order to build your applications you need to find out the right cpu revision for the board you are using.

Valid CPUREV values are CC or xB

Examples:

The MB851RevD board has a cpu with code
stm32w 108CCU7
so CC is your CPUREV value and the command is
make TARGET=mbxxx CPUREV=CC ...

or

The MB851RevC board has a cpu with code
stm32w 108CBU6
so xB is your CPUREV value.
make TARGET=mbxxx CPUREV=xB ...


NOTE: if the last word is B you need to use x as wildcard.