Browse Source

Print date with an exact period of 1000ms

DricomDragon 5 năm trước cách đây
mục cha
commit
1d4f76067b
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      prog/sources/setup-loop.cpp

+ 3 - 1
prog/sources/setup-loop.cpp

@@ -46,7 +46,9 @@ void setup (USER_MODE) {
 }
 
 void loop (USER_MODE) {
-	busyWaitDuring(MODE_ 1000);
+	busyWaitUntil(MODE_ counter * 1000);
+	counter++;
+
 	gotoLineColumn(MODE_ 1, 0);
 	printString(MODE_ "Date:");
 	printUnsigned(MODE_ millis(MODE));