瀏覽代碼

Use the new microseconds function in main loop

Replace units of milliseconds by microseconds
DricomDragon 5 年之前
父節點
當前提交
5df2b1fed3
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      prog/sources/setup-loop.cpp

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

@@ -30,7 +30,7 @@ void setup (USER_MODE) {
 void loop (USER_MODE) {
 	if (gPerformCount) {
 		incrementations(MODE);
-		if (5000 <= millis (MODE)) {
+		if (5000000 <= micros (MODE)) {
 			gPerformCount = false ;
 			gotoLineColumn (MODE_ 0, 0) ;
 			printUnsigned (MODE_ gCount1) ;