Browse Source

Fix RawHID on Teensy 2.0

main
PaulStoffregen 9 years ago
parent
commit
b823fc14e3
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      usb_rawhid/usb.c
  2. +1
    -1
      usb_rawhid/usb_api.cpp

+ 1
- 1
usb_rawhid/usb.c View File

@@ -73,7 +73,7 @@ static const uint8_t PROGMEM device_descriptor[] = {
};


static uint8_t PROGMEM rawhid_hid_report_desc[] = {
static const uint8_t PROGMEM rawhid_hid_report_desc[] = {
0x06, LSB(RAWHID_USAGE_PAGE), MSB(RAWHID_USAGE_PAGE),
0x0A, LSB(RAWHID_USAGE), MSB(RAWHID_USAGE),
0xA1, 0x01, // Collection 0x01

+ 1
- 1
usb_rawhid/usb_api.cpp View File

@@ -32,7 +32,7 @@

int usb_rawhid_class::available(void)
{
uint8_t n=0, i, intr_state;
uint8_t n=0, intr_state;

intr_state = SREG;
cli();

Loading…
Cancel
Save