Fix compiling error of lemokey keyboard

This commit is contained in:
lokher 2024-03-20 14:08:52 +08:00
parent a07246a196
commit 9adbd8bb23
4 changed files with 24 additions and 19 deletions

View file

@ -526,6 +526,15 @@ void wireless_task(void) {
lpm_task();
}
void send_string_task(void) {
if ((get_transport() & TRANSPORT_WIRELESS) && wireless_get_state() == WT_CONNECTED) {
wireless_transport.task();
#ifndef DISABLE_REPORT_BUFFER
report_buffer_task();
#endif
}
}
wt_state_t wireless_get_state(void) {
return wireless_state;
};