Skip to content

Commit dee0bbb

Browse files
committed
cleanup of ble defines and variables
1 parent b0ee040 commit dee0bbb

File tree

3 files changed

+6
-23
lines changed

3 files changed

+6
-23
lines changed

src/platform/silabs/rs911x/BLEManagerImpl.cpp

+1-6
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
#include <platform/internal/CHIPDeviceLayerInternal.h>
2727
#if CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE
2828

29-
#include "cmsis_os2.h"
3029
#include <platform/internal/BLEManager.h>
3130

3231
#include <ble/Ble.h>
@@ -39,9 +38,6 @@
3938
#include <setup_payload/AdditionalDataPayloadGenerator.h>
4039
#endif
4140

42-
// #ifndef SLI_SI91X_MCU_INTERFACE
43-
// #include "rail.h"
44-
// #endif
4541
#include <crypto/RandUtils.h>
4642
#ifdef __cplusplus
4743
extern "C" {
@@ -66,7 +62,6 @@ uint8_t dev_address[RSI_DEV_ADDR_LEN];
6662
uint16_t ble_measurement_hndl;
6763

6864
osSemaphoreId_t sl_rs_ble_init_sem;
69-
7065
osTimerId_t sbleAdvTimeoutTimer;
7166

7267
static osThreadId_t sBleThread;
@@ -96,7 +91,7 @@ void sl_ble_init()
9691

9792
// registering the GAP callback functions
9893
rsi_ble_gap_register_callbacks(NULL, NULL, rsi_ble_on_disconnect_event, NULL, NULL, NULL, rsi_ble_on_enhance_conn_status_event,
99-
NULL, NULL, NULL);
94+
NULL, NULL, NULL);
10095

10196
// registering the GATT call back functions
10297
rsi_ble_gatt_register_callbacks(NULL, NULL, NULL, NULL, NULL, NULL, NULL, rsi_ble_on_gatt_write_event, NULL, NULL,

src/platform/silabs/rs911x/wfx_sl_ble_init.cpp

+4-13
Original file line numberDiff line numberDiff line change
@@ -20,31 +20,22 @@
2020
* See the License for the specific language governing permissions and
2121
* limitations under the License.
2222
*/
23+
#include <platform/CHIPDeviceLayer.h>
24+
#include <lib/support/logging/CHIPLogging.h>
25+
2326
#ifdef __cplusplus
2427
extern "C" {
2528
#endif
2629
#include "wfx_sl_ble_init.h"
27-
#include "ble_config.h"
28-
#include "cmsis_os2.h"
2930
#ifdef __cplusplus
3031
}
3132
#endif
32-
#include <platform/CHIPDeviceLayer.h>
33-
34-
#include "silabs_utils.h"
3533

3634
// Global Variables
3735
rsi_ble_t att_list;
38-
sl_wfx_msg_t event_msg;
39-
4036
BleEvent_t bleEvent;
41-
4237
static osMessageQueueId_t sBleEventQueue = NULL;
4338

44-
// Memory to initialize driver
45-
uint8_t bt_global_buf[BT_GLOBAL_BUFF_LEN];
46-
const uint8_t ShortUUID_CHIPoBLEService[] = { 0xF6, 0xFF };
47-
4839
void InitBleEventQueue()
4940
{
5041
sBleEventQueue = osMessageQueueNew(WFX_QUEUE_SIZE, sizeof(WfxEvent_t), NULL);
@@ -61,7 +52,7 @@ void BlePostEvent(BleEvent_t * event)
6152
sl_status_t status = osMessageQueuePut(sBleEventQueue, event, 0, 0);
6253
if (status != osOK)
6354
{
64-
SILABS_LOG("BlePostEvent: failed to post event: 0x%lx", status);
55+
ChipLogError(DeviceLayer,"BlePostEvent: failed to post event: 0x%lx", status);
6556
// TODO: Handle error, requeue event depending on queue size or notify relevant task, Chipdie, etc.
6657
}
6758
}

src/platform/silabs/rs911x/wfx_sl_ble_init.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,8 @@
2929
#define WFX_SL_BLE_INIT
3030

3131
// BLE include file to refer BLE APIs
32-
#include "FreeRTOS.h"
32+
#include "cmsis_os2.h"
3333
#include "ble_config.h"
34-
#include "event_groups.h"
35-
#include "task.h"
36-
#include "timers.h"
3734
#include "wfx_host_events.h"
3835
#include "wfx_rsi.h"
3936
#include <rsi_ble.h>

0 commit comments

Comments
 (0)