aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/PluggableUSB.h
diff options
context:
space:
mode:
Diffstat (limited to 'cores/arduino/PluggableUSB.h')
-rw-r--r--cores/arduino/PluggableUSB.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/cores/arduino/PluggableUSB.h b/cores/arduino/PluggableUSB.h
index 9210d7c..dcd9e25 100644
--- a/cores/arduino/PluggableUSB.h
+++ b/cores/arduino/PluggableUSB.h
@@ -39,13 +39,15 @@ public:
PUSBListNode *next = NULL;
};
-int8_t PUSB_AddFunction(PUSBListNode *node, u8 *interface);
-
-int PUSB_GetInterface(u8* interfaceNum);
-
-int PUSB_GetDescriptor(int8_t t);
+class PluggableUSB_ {
+public:
+ static int8_t addFunction(PUSBListNode *node, u8 *interface);
+ static int getInterface(u8* interfaceNum);
+ static int getDescriptor(int8_t t);
+ static bool setup(USBSetup& setup, u8 i);
+};
-bool PUSB_Setup(USBSetup& setup, u8 i);
+extern PluggableUSB_ PluggableUSB;
#endif