Hugo Pristauz / Mbed 2 deprecated S14_TOF_Detector

Dependencies:   BLE_API X_NUCLEO_6180XA1 X_NUCLEO_IDB0XA1 mbed

Fork of BLE_HeartRate_IDB0XA1 by ST

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers target.h Source File

target.h

00001 // bricks/target.h - define target specifics
00002 
00003 #ifndef _BRICKS_TARGET_H_
00004 #define _BRICKS_TARGET_H_
00005 
00006 // platform specific defines - comment out platforms which are not used
00007 // We work only with two kinds of platform:
00008 //
00009 //    a) a NUCLEO platform from STMicroelectronics
00010 //    b) a nRF51 platform from Nordic Semiconductor
00011 //
00012 // If we have not a nRF51 target then we coclude it is a NUCLEO target. This is
00013 // not really clean, but under above assumptions it works so far!
00014 
00015 #ifdef TARGET_NRF51822 
00016 #   define LED_INVERTED          // inverted LED for nRF51 targets
00017 #endif
00018 
00019 #endif // _BRICKS_TARGET_H_