浏览代码

Fix packet stuffing in usb_flightsim_flush_callback

main
Jorg Neves Bliesener 9 年前
父节点
当前提交
f2ed8c5dc3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      teensy3/usb_flightsim.cpp

+ 1
- 1
teensy3/usb_flightsim.cpp 查看文件

@@ -377,7 +377,7 @@ extern "C" {
void usb_flightsim_flush_callback(void)
{
if (tx_noautoflush || !tx_packet || tx_packet->index == 0) return;
for (int i=tx_packet->index; i < FLIGHTSIM_TX_ENDPOINT; i++) {
for (int i=tx_packet->index; i < FLIGHTSIM_TX_SIZE; i++) {
tx_packet->buf[i] = 0;
}
tx_packet->len = FLIGHTSIM_TX_SIZE;

正在加载...
取消
保存