diff --git a/src/samd/ArduinoLowPower.cpp b/src/samd/ArduinoLowPower.cpp index d756ed6..ba63b50 100644 --- a/src/samd/ArduinoLowPower.cpp +++ b/src/samd/ArduinoLowPower.cpp @@ -18,6 +18,7 @@ void ArduinoLowPowerClass::idle(uint32_t millis) { void ArduinoLowPowerClass::sleep() { bool restoreUSBDevice = false; if (SERIAL_PORT_USBVIRTUAL) { + SERIAL_PORT_USBVIRTUAL.flush(); USBDevice.standby(); } else { USBDevice.detach(); @@ -29,6 +30,9 @@ void ArduinoLowPowerClass::sleep() { if (restoreUSBDevice) { USBDevice.attach(); } + if (SERIAL_PORT_USBVIRTUAL) { + SERIAL_PORT_USBVIRTUAL.clear(); + } } void ArduinoLowPowerClass::sleep(uint32_t millis) { @@ -57,7 +61,9 @@ void ArduinoLowPowerClass::setAlarmIn(uint32_t millis) { void ArduinoLowPowerClass::attachInterruptWakeup(uint32_t pin, voidFuncPtr callback, uint32_t mode) { - if (pin > PINS_COUNT) { + EExt_Interrupts in = g_APinDescription[pin].ulExtInt; + + if (in == NOT_AN_INTERRUPT || in == EXTERNAL_INT_NMI) { // check for external wakeup sources // RTC library should call this API to enable the alarm subsystem switch (pin) { @@ -69,10 +75,6 @@ void ArduinoLowPowerClass::attachInterruptWakeup(uint32_t pin, voidFuncPtr callb return; } - EExt_Interrupts in = g_APinDescription[pin].ulExtInt; - if (in == NOT_AN_INTERRUPT || in == EXTERNAL_INT_NMI) - return; - //pinMode(pin, INPUT_PULLUP); attachInterrupt(pin, callback, mode);