aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/USBAPI.h
diff options
context:
space:
mode:
authorGergely Nagy <algernon@keyboard.io>2018-12-11 00:01:57 +0100
committerGergely Nagy <algernon@keyboard.io>2018-12-11 00:01:57 +0100
commitc87bc7ba9a94cbeca3b652ea068c4bdb38c76b6c (patch)
treef0273b3438592913f5414d6d08045bd82f922c13 /cores/arduino/USBAPI.h
parent2663be17272e19f00c55f3f2d8f1ebfac47158d6 (diff)
Add USBDevice.isSuspended()
Based on code originally by Rob van der Veer <rob.c.veer@gmail.com>, this adds USBDevice.isSuspended(), so user sketches can run custom code in their `loop` methods after checking if the device is suspended or not. Signed-off-by: Gergely Nagy <algernon@keyboard.io>
Diffstat (limited to 'cores/arduino/USBAPI.h')
-rw-r--r--cores/arduino/USBAPI.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cores/arduino/USBAPI.h b/cores/arduino/USBAPI.h
index 479ced9..701a14f 100644
--- a/cores/arduino/USBAPI.h
+++ b/cores/arduino/USBAPI.h
@@ -65,6 +65,8 @@ public:
void detach(); // Serial port goes down too...
void poll();
bool wakeupHost(); // returns false, when wakeup cannot be processed
+
+ bool isSuspended();
};
extern USBDevice_ USBDevice;