Browse Source

Fix data race by disabling interruptions

Interruptions in critical section
DricomDragon 5 năm trước cách đây
mục cha
commit
c2a4144a8a
3 tập tin đã thay đổi với 17 bổ sung5 xóa
  1. 3 1
      prog/makefile.json
  2. 8 4
      prog/sources/setup-loop.cpp
  3. 6 0
      prog/sources/setup-loop.h

+ 3 - 1
prog/makefile.json

@@ -2,5 +2,7 @@
 
   "TEENSY" : "3.6",
 
-  "CPU-MHZ" : 180
+  "CPU-MHZ" : 180,
+
+  "SECTION-SCHEME" : "disableInterrupt"
 }

+ 8 - 4
prog/sources/setup-loop.cpp

@@ -17,15 +17,19 @@ static void rtISR (SECTION_MODE_ const uint32_t inUptime) {
 
 MACRO_REAL_TIME_ISR (rtISR) ;
 
+void section_incrementations(SECTION_MODE) {
+	gCount1 += 1 ;
+	gCount2 += 1 ;
+	gCount3 += 1 ;
+	gCount4 += 1 ;
+}
+
 void setup (USER_MODE) {
 }
 
 void loop (USER_MODE) {
 	if (gPerformCount) {
-		gCount1 += 1 ;
-		gCount2 += 1 ;
-		gCount3 += 1 ;
-		gCount4 += 1 ;
+		incrementations(MODE);
 		if (5000 <= millis (MODE)) {
 			gPerformCount = false ;
 			gotoLineColumn (MODE_ 0, 0) ;

+ 6 - 0
prog/sources/setup-loop.h

@@ -6,3 +6,9 @@ void setup (USER_MODE) asm ("setup.function") ;
 
 void loop (USER_MODE) asm ("loop.function") ;
 
+//$section fonction.incrementations
+
+void incrementations (USER_MODE) asm ("fonction.incrementations") ;
+
+void section_incrementations (SECTION_MODE) asm ("section.fonction.incrementations") ;
+