CMSIS-DAP

Dependencies:   mbed mbed API helper

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers target.h Source File

target.h

00001 
00002 #ifndef TARGET_H
00003 #define TARGET_H
00004 
00005 #if ONE
00006   #include "one.h"
00007 #elif TWO
00008   #include "two.h"
00009 #elif THREE
00010   #include "three.h"
00011 #else
00012   #error TARGET NOT KNOWN
00013 #endif
00014 
00015 #endif