File tree 2 files changed +1
-5
lines changed
hardware/arduino/sam/cores/arduino
2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ ARDUINO 1.5.6 BETA
26
26
improve throughput when using high baudrates (KurtE)
27
27
* sam: Fixed wrap-around bug in delay() (Mark Tillotson)
28
28
* sam: Fixed regression in analogRead() (fails to read multiple channels) (Mark Tillotson)
29
+ * sam: Fixed loops in Reset.cpp (Matthijs Kooijman)
29
30
* sam: Optimized delayMicroseconds() (Rob Tillaart) #1121
30
31
* Optimized Print::print(String&) method, now uses internal string buffer to perform block write
31
32
* Improved portability of String class (maniacbug) #695
Original file line number Diff line number Diff line change @@ -40,11 +40,6 @@ void banzai() {
40
40
41
41
// From here flash memory is no more available.
42
42
43
- // Memory swap needs some time to stabilize
44
- for (uint32_t i=0 ; i<1000000 ; i++)
45
- // force compiler to not optimize this
46
- __asm__ __volatile__ (" " );
47
-
48
43
// BANZAIIIIIII!!!
49
44
const int RSTC_KEY = 0xA5 ;
50
45
RSTC->RSTC_CR =
You can’t perform that action at this time.
0 commit comments