|
@ -22,10 +22,12 @@ |
|
|
|
|
|
|
|
|
#ifdef ARDUINO_ARCH_SAM |
|
|
#ifdef ARDUINO_ARCH_SAM |
|
|
|
|
|
|
|
|
#include "../../inc/MarlinConfig.h" |
|
|
#include "../../core/macros.h" |
|
|
#include "../../Marlin.h" |
|
|
#include "../../core/serial.h" |
|
|
#include "../../backtrace/unwinder.h" |
|
|
#include <stdarg.h> |
|
|
#include "../../backtrace/unwmemaccess.h" |
|
|
|
|
|
|
|
|
#include "../backtrace/unwinder.h" |
|
|
|
|
|
#include "../backtrace/unwmemaccess.h" |
|
|
|
|
|
|
|
|
// Debug monitor that dumps to the Programming port all status when
|
|
|
// Debug monitor that dumps to the Programming port all status when
|
|
|
// an exception or WDT timeout happens - And then resets the board
|
|
|
// an exception or WDT timeout happens - And then resets the board
|
|
@ -66,7 +68,6 @@ static void TXBegin(void) { |
|
|
UART->UART_CR = UART_CR_RXEN | UART_CR_TXEN; |
|
|
UART->UART_CR = UART_CR_RXEN | UART_CR_TXEN; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Send character through UART with no interrupts
|
|
|
// Send character through UART with no interrupts
|
|
|
static void TX(char c) { |
|
|
static void TX(char c) { |
|
|
while (!(UART->UART_SR & UART_SR_TXRDY)) { WDT_Restart(WDT); sw_barrier(); }; |
|
|
while (!(UART->UART_SR & UART_SR_TXRDY)) { WDT_Restart(WDT); sw_barrier(); }; |
|
@ -333,4 +334,4 @@ __attribute__((naked)) void RSTC_Handler(void) { |
|
|
); |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
#endif |
|
|
#endif // ARDUINO_ARCH_SAM
|
|
|