File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -48,17 +48,17 @@ namespace ble {
48
48
*/
49
49
class AdvertisingParameters {
50
50
51
- static const uint32_t DEFAULT_ADVERTISING_INTERVAL_MIN;
51
+ static const uint32_t DEFAULT_ADVERTISING_INTERVAL_MIN = 0x400 ;
52
52
53
- static const uint32_t DEFAULT_ADVERTISING_INTERVAL_MAX;
53
+ static const uint32_t DEFAULT_ADVERTISING_INTERVAL_MAX = 0x800 ;
54
54
55
55
/* *
56
56
* Minimum Advertising interval for scannable and nonconnectable
57
57
* undirected events in 625us units.
58
58
*
59
59
* @note Equal to 100ms.
60
60
*/
61
- static const uint32_t GAP_ADV_PARAMS_INTERVAL_MIN_NONCON;
61
+ static const uint32_t GAP_ADV_PARAMS_INTERVAL_MIN_NONCON = 0x00A0 ;
62
62
63
63
public:
64
64
/* *
Original file line number Diff line number Diff line change 18
18
19
19
namespace ble {
20
20
21
- const uint32_t AdvertisingParameters::DEFAULT_ADVERTISING_INTERVAL_MIN = 0x400 ;
22
- const uint32_t AdvertisingParameters::DEFAULT_ADVERTISING_INTERVAL_MAX = 0x800 ;
23
- const uint32_t AdvertisingParameters::GAP_ADV_PARAMS_INTERVAL_MIN_NONCON = 0x00A0 ;
21
+ const uint32_t AdvertisingParameters::DEFAULT_ADVERTISING_INTERVAL_MIN;
22
+ const uint32_t AdvertisingParameters::DEFAULT_ADVERTISING_INTERVAL_MAX;
23
+ const uint32_t AdvertisingParameters::GAP_ADV_PARAMS_INTERVAL_MIN_NONCON;
24
24
25
25
} // namespace ble
You can’t perform that action at this time.
0 commit comments