File tree 1 file changed +3
-1
lines changed
src/platform/silabs/rs911x
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ namespace {
247
247
#define BLE_CONFIG_MAX_CE_LENGTH (0xFFFF ) // Leave to max value
248
248
249
249
#define BLE_DEFAULT_TIMER_PERIOD_MS (1 )
250
- #define BLE_SEND_INDICATION_TIMER_PERIOD_MS (10 )
250
+ #define BLE_SEND_INDICATION_TIMER_PERIOD_MS (400 )
251
251
252
252
TimerHandle_t sbleAdvTimeoutTimer; // FreeRTOS sw timer.
253
253
TimerHandle_t sbleSendIndicationTimeoutTimer; // FreeRTOS sw timer.
@@ -951,6 +951,7 @@ void BLEManagerImpl::HandleSoftTimerEvent(void)
951
951
event.Type = DeviceEventType::kCHIPoBLEConnectionError ;
952
952
event.CHIPoBLEConnectionError .ConId = connHandle;
953
953
event.CHIPoBLEConnectionError .Reason = BLE_ERROR_CHIPOBLE_PROTOCOL_ABORT;
954
+ ChipLogProgress (DeviceLayer, " BLEManagerImpl::HandleSoftTimerEvent CHIPOBLE_PROTOCOL_ABORT" );
954
955
PlatformMgr ().PostEventOrDie (&event);
955
956
}
956
957
@@ -1125,6 +1126,7 @@ void BLEManagerImpl::StartBleAdvTimeoutTimer(uint32_t aTimeoutInMs)
1125
1126
1126
1127
void BLEManagerImpl::BleSendIndicationTimeoutHandler (TimerHandle_t xTimer)
1127
1128
{
1129
+ ChipLogProgress (DeviceLayer, " BleSendIndicationTimeoutHandler::Start" );
1128
1130
sInstance .HandleSoftTimerEvent ();
1129
1131
}
1130
1132
You can’t perform that action at this time.
0 commit comments