From c54a6b16c62bf656479135cde6d3d46cac7b92b3 Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Wed, 13 Aug 2025 17:26:20 +0200 Subject: [PATCH] fw/comm/ble/kernel_le_client/ppogatt: reduce max unackd resets to 5 Signed-off-by: Gerard Marull-Paretas --- src/fw/comm/ble/kernel_le_client/ppogatt/ppogatt_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/comm/ble/kernel_le_client/ppogatt/ppogatt_internal.h b/src/fw/comm/ble/kernel_le_client/ppogatt/ppogatt_internal.h index d2bf7d57..9fae8893 100644 --- a/src/fw/comm/ble/kernel_le_client/ppogatt/ppogatt_internal.h +++ b/src/fw/comm/ble/kernel_le_client/ppogatt/ppogatt_internal.h @@ -38,7 +38,7 @@ //! Number of maximum consecutive timeouts without getting a packet Ack'd #define PPOGATT_TIMEOUT_COUNT_MAX (2) //! Number of maximum consecutive resets without getting a packet Ack'd -#define PPOGATT_RESET_COUNT_MAX (10) +#define PPOGATT_RESET_COUNT_MAX (5) //! Number of maximum consecutive disconnects without getting a packet Ack'd #define PPOGATT_DISCONNECT_COUNT_MAX (2) //! Maximum amount of time PPoGATT will wait before sending an Ack for received data