瀏覽代碼

Merge pull request #428 from KurtE/T4_usb_keyboard_leds

T4 - USB Keyboard support LEDS
teensy4-core
Paul Stoffregen 4 年之前
父節點
當前提交
d960249c4d
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 6 行新增0 行删除
  1. +6
    -0
      teensy4/usb.c

+ 6
- 0
teensy4/usb.c 查看文件

@@ -627,6 +627,12 @@ static void endpoint0_complete(void)
}
}
#endif
#ifdef KEYBOARD_INTERFACE
if (setup.word1 == 0x02000921 && setup.word2 == ((1 << 16) | KEYBOARD_INTERFACE)) {
keyboard_leds = endpoint0_buffer[0];
endpoint0_transmit(NULL, 0, 0);
}
#endif
#ifdef SEREMU_INTERFACE
if (setup.word1 == 0x03000921 && setup.word2 == ((4<<16)|SEREMU_INTERFACE)
&& endpoint0_buffer[0] == 0xA9 && endpoint0_buffer[1] == 0x45

Loading…
取消
儲存