29
29
#include " cmsis_os2.h"
30
30
#include < platform/internal/BLEManager.h>
31
31
32
-
33
32
#include < ble/Ble.h>
34
33
#include < lib/support/CodeUtils.h>
35
34
#include < lib/support/logging/CHIPLogging.h>
@@ -56,7 +55,6 @@ extern "C" {
56
55
}
57
56
#endif
58
57
59
- #define WFX_QUEUE_SIZE 10
60
58
#define BLE_MIN_CONNECTION_INTERVAL_MS 24
61
59
#define BLE_MAX_CONNECTION_INTERVAL_MS 40
62
60
#define BLE_SLAVE_LATENCY_MS 0
@@ -68,7 +66,6 @@ uint8_t dev_address[RSI_DEV_ADDR_LEN];
68
66
uint16_t ble_measurement_hndl;
69
67
70
68
osSemaphoreId_t sl_rs_ble_init_sem;
71
- osMessageQueueId_t sBleEventQueue = NULL ;
72
69
73
70
osTimerId_t sbleAdvTimeoutTimer;
74
71
@@ -99,7 +96,7 @@ void sl_ble_init()
99
96
100
97
// registering the GAP callback functions
101
98
rsi_ble_gap_register_callbacks (NULL , NULL , rsi_ble_on_disconnect_event, NULL , NULL , NULL , rsi_ble_on_enhance_conn_status_event,
102
- NULL , NULL , NULL );
99
+ NULL , NULL , NULL );
103
100
104
101
// registering the GATT call back functions
105
102
rsi_ble_gatt_register_callbacks (NULL , NULL , NULL , NULL , NULL , NULL , NULL , rsi_ble_on_gatt_write_event, NULL , NULL ,
@@ -109,10 +106,7 @@ void sl_ble_init()
109
106
// Exchange of GATT info with BLE stack
110
107
rsi_ble_add_matter_service ();
111
108
rsi_ble_set_random_address_with_value (randomAddrBLE);
112
-
113
- sBleEventQueue = osMessageQueueNew (WFX_QUEUE_SIZE, sizeof (WfxEvent_t), NULL );
114
- VerifyOrDie (sBleEventQueue != nullptr );
115
-
109
+ InitBleEventQueue ();
116
110
chip::DeviceLayer::Internal::BLEMgrImpl ().HandleBootEvent ();
117
111
}
118
112
@@ -179,7 +173,7 @@ void sl_ble_event_handling_task(void * args)
179
173
// Application event map
180
174
while (1 )
181
175
{
182
- status = osMessageQueueGet (sBleEventQueue , &bleEvent, NULL , osWaitForever);
176
+ status = osMessageQueueGet (GetBleEventQueue () , &bleEvent, NULL , osWaitForever);
183
177
if (status == osOK)
184
178
{
185
179
ProcessEvent (bleEvent);
0 commit comments