소스 검색

Merge pull request #428 from KurtE/T4_usb_keyboard_leds

T4 - USB Keyboard support LEDS
teensy4-core
Paul Stoffregen 4 년 전
부모
커밋
d960249c4d
No account linked to committer's email address
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…
취소
저장