From f2c9ba015095cea0fda39ff12589cdc298eeadf4 Mon Sep 17 00:00:00 2001 From: Chen Jichang Date: Thu, 8 May 2025 15:51:48 +0800 Subject: [PATCH] fix(gptimer): fix test failure when pm enabled --- components/driver/test_apps/gptimer/main/test_gptimer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/driver/test_apps/gptimer/main/test_gptimer.c b/components/driver/test_apps/gptimer/main/test_gptimer.c index e43d8eb261..bdd6e20b65 100644 --- a/components/driver/test_apps/gptimer/main/test_gptimer.c +++ b/components/driver/test_apps/gptimer/main/test_gptimer.c @@ -299,7 +299,7 @@ TEST_ALARM_CALLBACK_ATTR static bool test_gptimer_alarm_normal_callback(gptimer_ * Also should account for the inaccuracy of the systick during DFS. */ #if CONFIG_PM_ENABLE -#define GPTIMER_ONE_SHOT_ALARM_COUNT_DELTA 15000 +#define GPTIMER_ONE_SHOT_ALARM_COUNT_DELTA 50000 #else #define GPTIMER_ONE_SHOT_ALARM_COUNT_DELTA 1000 #endif // CONFIG_PM_ENABLE