Skip to content

Commit b0ee040

Browse files
committed
removing the extern keyword for the queue
1 parent 593ee66 commit b0ee040

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

src/platform/silabs/rs911x/BLEManagerImpl.cpp

+3-9
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
#include "cmsis_os2.h"
3030
#include <platform/internal/BLEManager.h>
3131

32-
3332
#include <ble/Ble.h>
3433
#include <lib/support/CodeUtils.h>
3534
#include <lib/support/logging/CHIPLogging.h>
@@ -56,7 +55,6 @@ extern "C" {
5655
}
5756
#endif
5857

59-
#define WFX_QUEUE_SIZE 10
6058
#define BLE_MIN_CONNECTION_INTERVAL_MS 24
6159
#define BLE_MAX_CONNECTION_INTERVAL_MS 40
6260
#define BLE_SLAVE_LATENCY_MS 0
@@ -68,7 +66,6 @@ uint8_t dev_address[RSI_DEV_ADDR_LEN];
6866
uint16_t ble_measurement_hndl;
6967

7068
osSemaphoreId_t sl_rs_ble_init_sem;
71-
osMessageQueueId_t sBleEventQueue = NULL;
7269

7370
osTimerId_t sbleAdvTimeoutTimer;
7471

@@ -99,7 +96,7 @@ void sl_ble_init()
9996

10097
// registering the GAP callback functions
10198
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);
103100

104101
// registering the GATT call back functions
105102
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()
109106
// Exchange of GATT info with BLE stack
110107
rsi_ble_add_matter_service();
111108
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();
116110
chip::DeviceLayer::Internal::BLEMgrImpl().HandleBootEvent();
117111
}
118112

@@ -179,7 +173,7 @@ void sl_ble_event_handling_task(void * args)
179173
// Application event map
180174
while (1)
181175
{
182-
status = osMessageQueueGet(sBleEventQueue, &bleEvent, NULL, osWaitForever);
176+
status = osMessageQueueGet(GetBleEventQueue(), &bleEvent, NULL, osWaitForever);
183177
if (status == osOK)
184178
{
185179
ProcessEvent(bleEvent);

src/platform/silabs/rs911x/wfx_sl_ble_init.cpp

+14-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ extern "C" {
2929
#ifdef __cplusplus
3030
}
3131
#endif
32+
#include <platform/CHIPDeviceLayer.h>
33+
3234
#include "silabs_utils.h"
3335

3436
// Global Variables
@@ -37,12 +39,23 @@ sl_wfx_msg_t event_msg;
3739

3840
BleEvent_t bleEvent;
3941

40-
extern osMessageQueueId_t sBleEventQueue;
42+
static osMessageQueueId_t sBleEventQueue = NULL;
4143

4244
// Memory to initialize driver
4345
uint8_t bt_global_buf[BT_GLOBAL_BUFF_LEN];
4446
const uint8_t ShortUUID_CHIPoBLEService[] = { 0xF6, 0xFF };
4547

48+
void InitBleEventQueue()
49+
{
50+
sBleEventQueue = osMessageQueueNew(WFX_QUEUE_SIZE, sizeof(WfxEvent_t), NULL);
51+
VerifyOrDie(sBleEventQueue != nullptr);
52+
}
53+
54+
osMessageQueueId_t GetBleEventQueue()
55+
{
56+
return sBleEventQueue;
57+
}
58+
4659
void BlePostEvent(BleEvent_t * event)
4760
{
4861
sl_status_t status = osMessageQueuePut(sBleEventQueue, event, 0, 0);

src/platform/silabs/rs911x/wfx_sl_ble_init.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ typedef struct BleEvent_s
8888
} BleEvent_t;
8989

9090
#define ATT_REC_IN_HOST (0)
91+
#define WFX_QUEUE_SIZE 10
9192

9293
#define RSI_BT_CTRL_REMOTE_USER_TERMINATED (0x4E13)
9394
#define RSI_BT_CTRL_REMOTE_DEVICE_TERMINATED_CONNECTION_DUE_TO_LOW_RESOURCES (0x4E14)
@@ -121,8 +122,8 @@ typedef struct BleEvent_s
121122
#define RSI_BLE_CHARACTERISTIC_TX_GATT_SERVER_CLIENT_HANDLE_LOCATION (5)
122123

123124
// ALL Ble functions
124-
void BlePostEvent(BleEvent_t * event);
125-
void BleGetEvent(BleEvent_t event);
125+
void InitBleEventQueue();
126+
osMessageQueueId_t GetBleEventQueue();
126127
void rsi_ble_on_connect_event(rsi_ble_event_conn_status_t * resp_conn);
127128
void rsi_ble_on_disconnect_event(rsi_ble_event_disconnect_t * resp_disconnect, uint16_t reason);
128129
void rsi_ble_on_enhance_conn_status_event(rsi_ble_event_enhance_conn_status_t * resp_enh_conn);

0 commit comments

Comments
 (0)