Browse Source

Replace main file by a basic failing assertion

DricomDragon 5 years ago
parent
commit
18db5d7fed
1 changed files with 2 additions and 37 deletions
  1. 2 37
      prog/sources/setup-loop.cpp

+ 2 - 37
prog/sources/setup-loop.cpp

@@ -1,45 +1,10 @@
 #include "all-headers.h"
 
-static volatile uint32_t gCount1 = 0 ;
-static volatile uint32_t gCount2 = 0 ;
-static volatile uint32_t gCount3 = 0 ;
-static volatile uint32_t gCount4 = 0 ;
-static volatile bool gPerformCount = true ;
-
-static void rtISR (SECTION_MODE_ const uint32_t inUptime) {
-	if (gPerformCount) {
-		gCount1 += 1 ;
-		gCount2 += 1 ;
-		gCount3 += 1 ;
-		gCount4 += 1 ;
-	}
-}
-
-MACRO_REAL_TIME_ISR (rtISR) ;
-
-void section_incrementations(SECTION_MODE) {
-	gCount1 += 1 ;
-	gCount2 += 1 ;
-	gCount3 += 1 ;
-	gCount4 += 1 ;
-}
+int ultimate_answer(41);
 
 void setup (USER_MODE) {
 }
 
 void loop (USER_MODE) {
-	if (gPerformCount) {
-		incrementations(MODE);
-		if (5000000 <= micros (MODE)) {
-			gPerformCount = false ;
-			gotoLineColumn (MODE_ 0, 0) ;
-			printUnsigned (MODE_ gCount1) ;
-			gotoLineColumn (MODE_ 1, 0) ;
-			printUnsigned (MODE_ gCount2) ;
-			gotoLineColumn (MODE_ 2, 0) ;
-			printUnsigned (MODE_ gCount3) ;
-			gotoLineColumn (MODE_ 3, 0) ;
-			printUnsigned (MODE_ gCount4) ;
-		}
-	}
+	assertion (ultimate_answer == 42, 101, __FILE__, __LINE__) ;
 }