Explorar el Código

Fix RawHID on Teensy 2.0

main
PaulStoffregen hace 9 años
padre
commit
b823fc14e3
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. +1
    -1
      usb_rawhid/usb.c
  2. +1
    -1
      usb_rawhid/usb_api.cpp

+ 1
- 1
usb_rawhid/usb.c Ver fichero

@@ -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 Ver fichero

@@ -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();

Cargando…
Cancelar
Guardar