Interruptions in critical section
@@ -2,5 +2,7 @@
"TEENSY" : "3.6",
- "CPU-MHZ" : 180
+ "CPU-MHZ" : 180,
+
+ "SECTION-SCHEME" : "disableInterrupt"
}
@@ -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,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") ;