From 22d13e4c7718f313ddaa6c9acf8c2075ec8066f9 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Tue, 16 Jul 2024 12:36:07 -0400 Subject: [PATCH] decrease the modem status polling delays to 125ms idle, 75ms active; --- src/host/modem/Modem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/host/modem/Modem.h b/src/host/modem/Modem.h index 309c64d9..a5091191 100644 --- a/src/host/modem/Modem.h +++ b/src/host/modem/Modem.h @@ -270,8 +270,8 @@ namespace modem const uint32_t MAX_ADC_OVERFLOW = 128U; const uint32_t MAX_DAC_OVERFLOW = 128U; - const uint32_t MODEM_POLL_TIME_IDLE = 100U; - const uint32_t MODEM_POLL_TIME_ACTIVE = 175U; + const uint32_t MODEM_POLL_TIME_IDLE = 125U; + const uint32_t MODEM_POLL_TIME_ACTIVE = 75U; /** @} */