@@ -214,19 +214,20 @@ class BLEManagerImpl final : public BLEManager,
214
214
215
215
enum class Flags : uint16_t
216
216
{
217
- kAsyncInitCompleted = 0x0001 , /* *< One-time asynchronous initialization actions have been performed. */
218
- kESPBLELayerInitialized = 0x0002 , /* *< The ESP BLE layer has been initialized. */
219
- kAppRegistered = 0x0004 , /* *< The CHIPoBLE application has been registered with the ESP BLE layer. */
220
- kAttrsRegistered = 0x0008 , /* *< The CHIPoBLE GATT attributes have been registered with the ESP BLE layer. */
221
- kGATTServiceStarted = 0x0010 , /* *< The CHIPoBLE GATT service has been started. */
222
- kAdvertisingConfigured = 0x0020 , /* *< CHIPoBLE advertising has been configured in the ESP BLE layer. */
223
- kAdvertising = 0x0040 , /* *< The system is currently CHIPoBLE advertising. */
224
- kControlOpInProgress = 0x0080 , /* *< An async control operation has been issued to the ESP BLE layer. */
225
- kAdvertisingEnabled = 0x0100 , /* *< The application has enabled CHIPoBLE advertising. */
226
- kFastAdvertisingEnabled = 0x0200 , /* *< The application has enabled fast advertising. */
227
- kUseCustomDeviceName = 0x0400 , /* *< The application has configured a custom BLE device name. */
228
- kAdvertisingRefreshNeeded = 0x0800 , /* *< The advertising configuration/state in ESP BLE layer needs to be updated. */
229
- kExtAdvertisingEnabled = 0x1000 , /* *< The application has enabled Extended BLE announcement. */
217
+ kAsyncInitCompleted = 0x0001 , /* *< One-time asynchronous initialization actions have been performed. */
218
+ kESPBLELayerInitialized = 0x0002 , /* *< The ESP BLE layer has been initialized. */
219
+ kAppRegistered = 0x0004 , /* *< The CHIPoBLE application has been registered with the ESP BLE layer. */
220
+ kAttrsRegistered = 0x0008 , /* *< The CHIPoBLE GATT attributes have been registered with the ESP BLE layer. */
221
+ kGATTServiceStarted = 0x0010 , /* *< The CHIPoBLE GATT service has been started. */
222
+ kAdvertisingConfigured = 0x0020 , /* *< CHIPoBLE advertising has been configured in the ESP BLE layer. */
223
+ kAdvertising = 0x0040 , /* *< The system is currently CHIPoBLE advertising. */
224
+ kControlOpInProgress = 0x0080 , /* *< An async control operation has been issued to the ESP BLE layer. */
225
+ kAdvertisingEnabled = 0x0100 , /* *< The application has enabled CHIPoBLE advertising. */
226
+ kFastAdvertisingEnabled = 0x0200 , /* *< The application has enabled fast advertising. */
227
+ kUseCustomDeviceName = 0x0400 , /* *< The application has configured a custom BLE device name. */
228
+ kAdvertisingRefreshNeeded = 0x0800 , /* *< The advertising configuration/state in ESP BLE layer needs to be updated. */
229
+ kExtAdvertisingEnabled = 0x1000 , /* *< The application has enabled Extended BLE announcement. */
230
+ kBleDeinitializedMemReleased = 0x2000 , /* *< The ble is deinitialized and memory is reclaimed. */
230
231
};
231
232
232
233
enum
0 commit comments