b4ec0c7c1d
Parts of the stm32w108 doxygen comments have explicit links to symbols that do not exist anywhere in our source base, let alone be documented. This is likely to be caused by a partial import of manufacturer libraries in the Contiki source tree. These links were previously not generating warnings in the doxygen log because we were not defining `DOXYGEN_SHOULD_SKIP_THIS` and they were thus being skipped altogether by the doxygen pre-processor. Defining `DOXYGEN_SHOULD_SKIP_THIS` causes those doxygen comments to get processed and to thus generate warnings. This commit removes explicit links to non-existent symbols and updates `doxyerrors.cnt` accordingly. |
||
---|---|---|
.. | ||
dev | ||
e_stdio | ||
hal | ||
lib | ||
simplemac | ||
small-printf | ||
board-sensors.h | ||
cfs-coffee-arch.c | ||
cfs-coffee-arch.h | ||
clock.c | ||
elfloader-arch.c | ||
gnu-stm32w108.ld | ||
gnu-stm32w108CC.ld | ||
gnu-stm32w108xB.ld | ||
gnu.ld | ||
iar-cfg-coffee.icf | ||
iar-cfg.icf | ||
leds-arch.c | ||
Makefile.stm32w108 | ||
mtarch.h | ||
rand.c | ||
README.txt | ||
rtimer-arch.c | ||
rtimer-arch.h | ||
slip-uart1.c | ||
uip-arch.c | ||
watchdog.c |
Building instructions. In order to build your applications you need to find out the right cpu revision for the board you are using. Valid STM32W_CPUREV values are CC or xB Examples: The MB851RevD board has a cpu with code stm32w 108CCU7 so CC is your STM32W_CPUREV value and the command is make TARGET=mbxxx STM32W_CPUREV=CC ... or The MB851RevC board has a cpu with code stm32w 108CBU6 so xB is your STM32W_CPUREV value. make TARGET=mbxxx STM32W_CPUREV=xB ... NOTE: if the last word is B you need to use x as wildcard.