Browse Source

Merge pull request #188 from ctag/patch-1

Declare .init0 section as used in example sketch.
Bill Westfield 8 years ago
parent
commit
c811854d46
1 changed files with 1 additions and 0 deletions
  1. 1 0
      optiboot/examples/test_reset/test_reset.ino

+ 1 - 0
optiboot/examples/test_reset/test_reset.ino

@@ -23,6 +23,7 @@ uint8_t resetFlags __attribute__ ((section(".noinit")));
  * to the variable.  Again, avr-gcc provides special code sections for this.
  */
 void resetFlagsInit(void) __attribute__ ((naked))
+                          __attribute__ ((used))
                           __attribute__ ((section (".init0")));
 void resetFlagsInit(void)
 {