diff Small_CPU/Src/baseCPU2.c @ 763:aa6006975e76

increase HAL_Delay to 10ms for cold-start-button reset + typos and comment changes
author heinrichsweikamp
date Sun, 26 Mar 2023 18:34:30 +0200
parents 32529dfea3b0
children dfdfea8897f3
line wrap: on
line diff
--- a/Small_CPU/Src/baseCPU2.c	Sun Mar 26 11:27:29 2023 +0200
+++ b/Small_CPU/Src/baseCPU2.c	Sun Mar 26 18:34:30 2023 +0200
@@ -375,12 +375,12 @@
 
 		if (!scheduleSetButtonResponsiveness())
 		{
-			HAL_Delay(1);
+			HAL_Delay(10);
 			if (!scheduleSetButtonResponsiveness()) // send again, if problem it's not my problem here.
 			{
-				HAL_Delay(1);
+				HAL_Delay(10);
 				scheduleSetButtonResponsiveness(); // init
-				HAL_Delay(1);
+				HAL_Delay(10);
 			}
 		}
 	}