File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
connectivity/FEATURE_BLE/source/generic Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -369,6 +369,9 @@ Gap::Gap(
369
369
_advertising_timeout (),
370
370
_scan_timeout(),
371
371
_user_manage_connection_parameter_requests(false )
372
+ #if BLE_ROLE_OBSERVER
373
+ , _scan_parameters_set(false )
374
+ #endif // BLE_ROLE_OBSERVER
372
375
{
373
376
_pal_gap.initialize ();
374
377
Original file line number Diff line number Diff line change @@ -990,9 +990,9 @@ class Gap :
990
990
BitArray<BLE_GAP_MAX_ADVERTISING_SETS> _adv_started_from_refresh;
991
991
992
992
993
- bool _user_manage_connection_parameter_requests : 1 ;
993
+ bool _user_manage_connection_parameter_requests;
994
994
#if BLE_ROLE_OBSERVER
995
- bool _scan_parameters_set : 1 = false ;
995
+ bool _scan_parameters_set;
996
996
#endif // BLE_ROLE_OBSERVER
997
997
998
998
};
You can’t perform that action at this time.
0 commit comments