A blue button is always a nice toy ...

Dependencies:   BLE_API X_NUCLEO_IDB0XA1 mbed

Fork of BLE_HeartRate_IDB0XA1 by ST

Committer:
hux
Date:
Sun Oct 01 12:49:25 2017 +0000
Revision:
29:a6b74dfdd5f2
Parent:
28:307f58df778a
A blue button is always a nice toy ...

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hux 28:307f58df778a 1 // bricks.h - single header for inclusion of BLE stuff
hux 28:307f58df778a 2 // and most common brick headers
hux 28:307f58df778a 3
hux 28:307f58df778a 4 #ifndef _BRICKS_H_
hux 28:307f58df778a 5 #define _BRICKS_H_
hux 28:307f58df778a 6
hux 28:307f58df778a 7 #include <mbed.h>
hux 28:307f58df778a 8 #include "ble/BLE.h"
hux 28:307f58df778a 9
hux 28:307f58df778a 10 // include o.h before any other includes of bricks headers
hux 28:307f58df778a 11
hux 28:307f58df778a 12 #include "bricks/o.h"
hux 28:307f58df778a 13
hux 28:307f58df778a 14 // include other bricks headers in any order (we use alphabetical order)
hux 28:307f58df778a 15
hux 28:307f58df778a 16 #include "bricks/advertise.h"
hux 28:307f58df778a 17 #include "bricks/blinker.h"
hux 28:307f58df778a 18 #include "bricks/callback.h"
hux 28:307f58df778a 19 #include "bricks/characteristic.h"
hux 28:307f58df778a 20 #include "bricks/collection.h"
hux 28:307f58df778a 21 #include "bricks/enroll.h"
hux 28:307f58df778a 22 #include "bricks/get.h"
hux 28:307f58df778a 23 #include "bricks/init.h"
hux 28:307f58df778a 24 #include "bricks/print.h"
hux 28:307f58df778a 25 #include "bricks/service.h"
hux 28:307f58df778a 26 #include "bricks/set.h"
hux 28:307f58df778a 27 #include "bricks/sleep.h"
hux 28:307f58df778a 28 #include "bricks/trace.h"
hux 28:307f58df778a 29 #include "bricks/types.h"
hux 28:307f58df778a 30 #include "bricks/updated.h"
hux 28:307f58df778a 31
hux 28:307f58df778a 32 #endif // _BRICKS_H_