mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-12-04 06:47:50 +06:00
Fixed typo error cause fn+1/2/3 no work
This commit is contained in:
parent
cc6729af8c
commit
c67d72639d
|
@ -111,7 +111,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
#ifdef BLUETOOTH_ENABLE
|
||||
case BT_HST1 ... BT_HST3:
|
||||
if (record->event.pressed) {
|
||||
host_idx = keycode + BT_HST1 + 1;
|
||||
host_idx = keycode - BT_HST1 + 1;
|
||||
chVTSet(&pairing_key_timer, TIME_MS2I(2000), (vtfunc_t)pairing_key_timer_cb, &host_idx);
|
||||
bluetooth_connect_ex(host_idx, 0);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue
Block a user