PaulStoffregen hace 10 años
padre
commit
482a1f2b5f
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  1. +4
    -2
      teensy3/usb_dev.c

+ 4
- 2
teensy3/usb_dev.c Ver fichero

@@ -529,8 +529,10 @@ usb_packet_t *usb_rx(uint32_t endpoint)
if (endpoint >= NUM_ENDPOINTS) return NULL;
__disable_irq();
ret = rx_first[endpoint];
if (ret) rx_first[endpoint] = ret->next;
usb_rx_byte_count_data[endpoint] -= ret->len;
if (ret) {
rx_first[endpoint] = ret->next;
usb_rx_byte_count_data[endpoint] -= ret->len;
}
__enable_irq();
//serial_print("rx, epidx=");
//serial_phex(endpoint);

Cargando…
Cancelar
Guardar