Hugo Pristauz / Mbed 2 deprecated S16_Blue_ToF

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 bricks.h Source File

bricks.h

00001 // bricks.h - single header for inclusion of BLE stuff
00002 // and most common brick headers
00003 
00004 #ifndef _BRICKS_H_
00005 #define _BRICKS_H_
00006 
00007 #include <mbed.h>
00008 #include "ble/BLE.h"
00009 
00010    // include o.h before any other includes of bricks headers
00011    
00012 #include "bricks/o.h"          
00013 
00014    // include other bricks headers in any order (we use alphabetical order)
00015    
00016 #include "bricks/advertise.h"
00017 #include "bricks/blinker.h"
00018 #include "bricks/callback.h"
00019 #include "bricks/characteristic.h"
00020 #include "bricks/collection.h"
00021 #include "bricks/enroll.h"
00022 #include "bricks/get.h"
00023 #include "bricks/init.h"
00024 #include "bricks/print.h"
00025 #include "bricks/service.h"
00026 #include "bricks/set.h"
00027 #include "bricks/sleep.h"
00028 #include "bricks/trace.h"
00029 #include "bricks/types.h"
00030 #include "bricks/updated.h"
00031 
00032 #endif // _BRICKS_H_