Skip to content

Commit 593ee66

Browse files
committed
adding queue logic to the semaphore
1 parent 927724c commit 593ee66

File tree

7 files changed

+207
-268
lines changed

7 files changed

+207
-268
lines changed

examples/platform/silabs/BaseApplication.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -857,14 +857,14 @@ void BaseApplication::OnPlatformEvent(const ChipDeviceEvent * event, intptr_t)
857857
SILABS_LOG("Failed to initialize DIC module\n");
858858
}
859859
#endif // DIC_ENABLE
860-
#ifdef DISPLAY_ENABLED
861-
SilabsLCD::Screen_e screen;
862-
AppTask::GetLCD().GetScreen(screen);
863-
// Update the LCD screen with SSID and connected state
864-
VerifyOrReturn(screen == SilabsLCD::Screen_e::StatusScreen);
865-
BaseApplication::UpdateLCDStatusScreen(false);
866-
AppTask::GetLCD().SetScreen(screen);
867-
#endif // DISPLAY_ENABLED
860+
// #ifdef DISPLAY_ENABLED
861+
// SilabsLCD::Screen_e screen;
862+
// AppTask::GetLCD().GetScreen(screen);
863+
// // Update the LCD screen with SSID and connected state
864+
// VerifyOrReturn(screen == SilabsLCD::Screen_e::StatusScreen);
865+
// BaseApplication::UpdateLCDStatusScreen(false);
866+
// AppTask::GetLCD().SetScreen(screen);
867+
// #endif // DISPLAY_ENABLED
868868
if ((event->ThreadConnectivityChange.Result == kConnectivity_Established) ||
869869
(event->InternetConnectivityChange.IPv6 == kConnectivity_Established))
870870
{

src/platform/silabs/BLEManagerImpl.h

+8-7
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ extern "C" {
3333
#include <rsi_ble.h>
3434
#include <rsi_ble_apis.h>
3535
#include <rsi_bt_common.h>
36+
#include "wfx_sl_ble_init.h"
3637
#ifdef __cplusplus
3738
}
3839
#endif // __cplusplus
@@ -58,12 +59,12 @@ class BLEManagerImpl final : public BLEManager, private BleLayer, private BlePla
5859
void HandleBootEvent(void);
5960

6061
#if (SLI_SI91X_ENABLE_BLE || RSI_BLE_ENABLE)
61-
void HandleConnectEvent(void);
62-
void HandleConnectionCloseEvent(uint16_t reason);
63-
void HandleWriteEvent(rsi_ble_event_write_t evt);
64-
void UpdateMtu(rsi_ble_event_mtu_t evt);
62+
void HandleConnectEvent(sl_wfx_msg_t * evt);
63+
void HandleConnectionCloseEvent(sl_wfx_msg_t * evt);
64+
void HandleWriteEvent(sl_wfx_msg_t * evt);
65+
void UpdateMtu(sl_wfx_msg_t * evt);
6566
void HandleTxConfirmationEvent(BLE_CONNECTION_OBJECT conId);
66-
void HandleTXCharCCCDWrite(rsi_ble_event_write_t * evt);
67+
void HandleTXCharCCCDWrite(sl_wfx_msg_t * evt);
6768
void HandleSoftTimerEvent(void);
6869
int32_t SendBLEAdvertisementCommand(void);
6970
#else
@@ -80,7 +81,7 @@ class BLEManagerImpl final : public BLEManager, private BleLayer, private BlePla
8081

8182
#if CHIP_ENABLE_ADDITIONAL_DATA_ADVERTISING
8283
#if (SLI_SI91X_ENABLE_BLE || RSI_BLE_ENABLE)
83-
static void HandleC3ReadRequest(rsi_ble_read_req_t * rsi_ble_read_req);
84+
static void HandleC3ReadRequest(sl_wfx_msg_t * rsi_ble_read_req);
8485
#else
8586
#if CHIP_ENABLE_ADDITIONAL_DATA_ADVERTISING
8687
static void HandleC3ReadRequest(volatile sl_bt_msg_t * evt);
@@ -186,7 +187,7 @@ class BLEManagerImpl final : public BLEManager, private BleLayer, private BlePla
186187
#endif
187188

188189
#if (SLI_SI91X_ENABLE_BLE || RSI_BLE_ENABLE)
189-
void HandleRXCharWrite(rsi_ble_event_write_t * evt);
190+
void HandleRXCharWrite(sl_wfx_msg_t * evt);
190191
#else
191192
void HandleRXCharWrite(volatile sl_bt_msg_t * evt);
192193
#endif

src/platform/silabs/SiWx917/BUILD.gn

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ static_library("SiWx917") {
6464
"../../SingletonConfigurationManager.cpp",
6565
"../rs911x/BLEManagerImpl.cpp",
6666
"../rs911x/rsi_ble_config.h",
67-
"../rs911x/wfx_sl_ble_init.c",
67+
"../rs911x/wfx_sl_ble_init.cpp",
6868
"../rs911x/wfx_sl_ble_init.h",
6969
]
7070

0 commit comments

Comments
 (0)