From 30ebf7f92483bb57076ba571dcd04b4e8bb94872 Mon Sep 17 00:00:00 2001 From: Martino Facchin Date: Fri, 26 Jun 2015 17:16:54 +0200 Subject: fix HID descriptors bigger than 127 bytes --- cores/arduino/PluggableUSB.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cores/arduino/PluggableUSB.cpp') 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; icb->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; icb->getDescriptor(t); -- cgit v1.2.3-18-g5258