Rtos API example

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers weak.c Source File

weak.c

00001 #include "mbed_toolchain.h"
00002 
00003 int testWeak1() {
00004     return 0;
00005 }
00006 
00007 MBED_WEAK int testWeak2() {
00008     return 1;
00009 }
00010