浏览代码

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

正在加载...
取消
保存