소스 검색

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) ;