Parcourir la source

Add code and comment about resetting watchdog.
Which is needed if the bootloader will be invoked by the
sketch as a service ('J' command.)

WestfW il y a 6 ans
Parent
commit
20a79ce310
1 fichiers modifiés avec 12 ajouts et 2 suppressions
  1. 12 2
      optiboot/examples/test_reset/test_reset.ino

+ 12 - 2
optiboot/examples/test_reset/test_reset.ino

@@ -78,6 +78,16 @@ void printReset(const char *label, uint8_t resetFlags)
 }
 
 void setup() {
+#if 1
+  /*
+   * if we're going to allow the bootloader to be called as a service ('j" command),
+   * then we need to disable the WDT when the sketch starts.  Essentially, there is no
+   * way to tell a watchdog that occurs during the sketch from the watchdog that will
+   * re-start the sketch when the bootloader is called from the application.
+   */
+  MCUSR = ~(1 << WDRF); // allow us to disable WD
+  wdt_disable();
+#endif
   Serial.begin(9600);  // Initialize serial port
 
   Serial.println(F("Reset flag test\n"));
@@ -98,7 +108,7 @@ void loop() {
     printReset("\nNew MCUSR content: 0x", MCUSR);
   } else
     switch (ch & ~('a' - 'A')) {
-      
+
       case 'W':
         wdt_enable(WDTO_15MS);
         while (1); // To prevent the loop to start again before WDT resets the board
@@ -115,7 +125,7 @@ void loop() {
         Serial.print(F("\nPower down not supported on this CPU\n"));
 #endif
         break;
-        
+
       case 'J':
         /* Figure out where the bootloader starts. */
 #if FLASHEND > 140000