diff options
author | Cristian Maglie <c.maglie@arduino.cc> | 2015-09-29 16:46:11 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@arduino.cc> | 2015-10-02 11:59:22 +0200 |
commit | c07f988609cf24ccdd94451eb73cc20c99f09795 (patch) | |
tree | a5adf8fddb769c911fdc4e4aa50fb891003c0516 /libraries/HID | |
parent | 7302965552a77c1af000e3870848b3cc35670c51 (diff) |
[PUSB] Global functions PUSB_* are now methods of PluggableUSB class
Diffstat (limited to 'libraries/HID')
-rw-r--r-- | libraries/HID/HID.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/HID/HID.cpp b/libraries/HID/HID.cpp index 24e6f5c..ec28424 100644 --- a/libraries/HID/HID.cpp +++ b/libraries/HID/HID.cpp @@ -143,7 +143,7 @@ HID_::HID_(void) node.numInterfaces = 1, node.endpointType = endpointType, - HID_ENDPOINT_INT = PUSB_AddFunction(&node, &HID_INTERFACE); + HID_ENDPOINT_INT = PluggableUSB.addFunction(&node, &HID_INTERFACE); } int HID_::begin(void) |