Browse Source

Fix size of arm_dcache_flush_delte on T4.x USB RAWHID

Was using SEREMU_TX_SIZE should use RAWHID_TX_SIZE
main
Kurt Eckhardt 4 years ago
parent
commit
6de57f23e8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      teensy4/usb_rawhid.c

+ 1
- 1
teensy4/usb_rawhid.c View File

} }
uint8_t *txdata = txbuffer + (tx_head * RAWHID_TX_SIZE); uint8_t *txdata = txbuffer + (tx_head * RAWHID_TX_SIZE);
memcpy(txdata, buffer, RAWHID_TX_SIZE); memcpy(txdata, buffer, RAWHID_TX_SIZE);
arm_dcache_flush_delete(txdata, SEREMU_TX_SIZE);
arm_dcache_flush_delete(txdata, RAWHID_TX_SIZE );
usb_prepare_transfer(xfer, txdata, RAWHID_TX_SIZE, 0); usb_prepare_transfer(xfer, txdata, RAWHID_TX_SIZE, 0);
usb_transmit(RAWHID_TX_ENDPOINT, xfer); usb_transmit(RAWHID_TX_ENDPOINT, xfer);
if (++tx_head >= TX_NUM) tx_head = 0; if (++tx_head >= TX_NUM) tx_head = 0;

Loading…
Cancel
Save