added debugging

Fork of BLE_nRF8001 by RedBearLab

Committer:
jn80842
Date:
Mon Nov 10 01:24:23 2014 +0000
Revision:
2:7805a5595aab
Parent:
0:075ea2812998
just added debugging

Who changed what in which revision?

UserRevisionLine numberNew contents of line
RedBearLab 0:075ea2812998 1 #ifndef _BLE_SERVICE_H_
RedBearLab 0:075ea2812998 2 #define _BLE_SERVICE_H_
RedBearLab 0:075ea2812998 3
RedBearLab 0:075ea2812998 4 #include "BLEAttribute.h"
RedBearLab 0:075ea2812998 5
RedBearLab 0:075ea2812998 6 class BLEService : public BLEAttribute
RedBearLab 0:075ea2812998 7 {
RedBearLab 0:075ea2812998 8 public:
RedBearLab 0:075ea2812998 9 BLEService(const char* uuid);
RedBearLab 0:075ea2812998 10 };
RedBearLab 0:075ea2812998 11
RedBearLab 0:075ea2812998 12 #endif