1
0
Fork 0

[MERGE][Core] suspend: suppress wake up keypress (23389-241026)

This commit is contained in:
Drashna Jael're 2024-10-26 20:37:59 -07:00
parent 7ba6f4d639
commit 9c397f665b
Signed by: drashna
GPG key ID: DBA1FD3A860D1B11
6 changed files with 48 additions and 3 deletions

View file

@ -14,6 +14,10 @@ void suspend_power_down_user(void);
void suspend_power_down_kb(void);
void suspend_power_down_quantum(void);
bool keypress_is_wakeup_key(uint8_t row, uint8_t col);
void wakeup_matrix_update(void);
void wakeup_matrix_handle_key_event(uint8_t row, uint8_t col, bool pressed);
#ifndef USB_SUSPEND_WAKEUP_DELAY
# define USB_SUSPEND_WAKEUP_DELAY 0
#endif