소스 검색

Fix USB plug-in while BT mode falls to be enumerated

tags/v1.9
tmk 9 년 전
부모
커밋
9179246a1d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      keyboard/hhkb_rn42/matrix.c

+ 1
- 1
keyboard/hhkb_rn42/matrix.c 파일 보기

@@ -183,7 +183,7 @@ void matrix_power_up(void) {
void matrix_power_down(void) {
if (!matrix_power) return;
// doesn't power save while USB connection is active
if (USB_DeviceState == DEVICE_STATE_Configured) return;
if (USB_DeviceState != DEVICE_STATE_Unattached) return;
if (timer_elapsed32(matrix_last_modified) <= MATRIX_POWER_SAVE) return;
KEY_POWER_OFF();
suspend_power_down();

Loading…
취소
저장