High level Bluetooth Low Energy API and radio abstraction layer
Fork of BLE_API by
Diff: GapAdvertisingParams.h
- Revision:
- 2:ffc5216bd2cc
- Child:
- 4:50a31ff5f974
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/GapAdvertisingParams.h Tue Dec 10 07:32:12 2013 +0000 @@ -0,0 +1,18 @@ +#ifndef __GAP_ADVERTISING_PARAMS_H__ +#define __GAP_ADVERTISING_PARAMS_H__ + +#include "blecommon.h" + +class GapAdvertisingParams +{ +public: + GapAdvertisingParams(uint8_t advType, uint16_t interval, uint16_t timeout); + virtual ~GapAdvertisingParams(void); + +private: + uint8_t _advType; + uint16_t _interval; + uint16_t _timeout; +}; + +#endif