aboutsummaryrefslogtreecommitdiff
path: root/cores
diff options
context:
space:
mode:
authorMartino Facchin <m.facchin@arduino.cc>2015-06-26 17:16:54 +0200
committerCristian Maglie <c.maglie@arduino.cc>2015-07-16 13:13:51 +0200
commit30ebf7f92483bb57076ba571dcd04b4e8bb94872 (patch)
treeba6fdf59f5024617e2f7e0f0418ab1a62589037d /cores
parent3ee0fa126506c623bf45ddcfccce1bf2abd2e41e (diff)
fix HID descriptors bigger than 127 bytes
Diffstat (limited to 'cores')
-rw-r--r--cores/arduino/PluggableUSB.cpp8
-rw-r--r--cores/arduino/PluggableUSB.h8
2 files changed, 8 insertions, 8 deletions
diff --git a/cores/arduino/PluggableUSB.cpp b/cores/arduino/PluggableUSB.cpp
index 00f400d..970c11e 100644
--- a/cores/arduino/PluggableUSB.cpp
+++ b/cores/arduino/PluggableUSB.cpp
@@ -36,9 +36,9 @@ static u8 modules_count = 0;
static PUSBListNode* rootNode = NULL;
static PUSBListNode* lastNode = NULL;
-int8_t PUSB_GetInterface(u8* interfaceNum)
+int PUSB_GetInterface(u8* interfaceNum)
{
- int8_t ret = 0;
+ int ret = 0;
PUSBListNode* node = rootNode;
for (u8 i=0; i<modules_count; i++) {
ret = node->cb->getInterface(interfaceNum);
@@ -47,9 +47,9 @@ int8_t PUSB_GetInterface(u8* interfaceNum)
return ret;
}
-int8_t PUSB_GetDescriptor(int8_t t)
+int PUSB_GetDescriptor(int8_t t)
{
- int8_t ret = 0;
+ int ret = 0;
PUSBListNode* node = rootNode;
for (u8 i=0; i<modules_count && ret == 0; i++) {
ret = node->cb->getDescriptor(t);
diff --git a/cores/arduino/PluggableUSB.h b/cores/arduino/PluggableUSB.h
index f729deb..b9a27c1 100644
--- a/cores/arduino/PluggableUSB.h
+++ b/cores/arduino/PluggableUSB.h
@@ -28,8 +28,8 @@
typedef struct
{
bool (*setup)(Setup& setup, u8 i);
- int8_t (*getInterface)(u8* interfaceNum);
- int8_t (*getDescriptor)(int8_t t);
+ int (*getInterface)(u8* interfaceNum);
+ int (*getDescriptor)(int8_t t);
int8_t numEndpoints;
int8_t numInterfaces;
uint8_t *endpointType;
@@ -50,9 +50,9 @@ public:
int8_t PUSB_AddFunction(PUSBListNode *node, u8 *interface);
-int8_t PUSB_GetInterface(u8* interfaceNum);
+int PUSB_GetInterface(u8* interfaceNum);
-int8_t PUSB_GetDescriptor(int8_t t);
+int PUSB_GetDescriptor(int8_t t);
bool PUSB_Setup(Setup& setup, u8 i);