Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of BLE_API by
Diff: GapAdvertisingParams.h
- Revision:
- 2:ffc5216bd2cc
- Child:
- 4:50a31ff5f974
diff -r fd3ec64b2345 -r ffc5216bd2cc GapAdvertisingParams.h
--- /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
