From 627cf6e3d59435622559cb52032fa6671d1ff987 Mon Sep 17 00:00:00 2001 From: Henry Gabryjelski Date: Tue, 14 Nov 2023 01:52:02 -0800 Subject: [PATCH] Slow clock speed message update Signed-off-by: Henry Gabryjelski --- armsrc/appmain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/appmain.c b/armsrc/appmain.c index b8823af3b..29cdb9c0e 100644 --- a/armsrc/appmain.c +++ b/armsrc/appmain.c @@ -432,7 +432,7 @@ static void SendStatus(uint32_t wait) { delta_time = GetTickCountDelta(start_time); if ((delta_time < SLCK_CHECK_MS - 1) || (delta_time > SLCK_CHECK_MS + 1)) { // error > 2% with SLCK_CHECK_MS=50 - Dbprintf(_RED_(" Slow Clock speed change detected, TIA needed")); + Dbprintf(_RED_(" Slow Clock speed change detected, run `hw tia`")); Dbprintf(_YELLOW_(" Slow Clock actual speed seems closer to %d kHz"), (16 * MAINCK / 1000) / mainf * delta_time / SLCK_CHECK_MS); }