Merge branch 'develop'

This commit is contained in:
Matthias Ringwald 2024-12-23 12:25:05 +01:00
commit 565100c1ca
2 changed files with 2 additions and 0 deletions

View File

@ -283,6 +283,7 @@ static void hid_host_handle_interrupt_report(const uint8_t * report, uint16_t re
continue; continue;
} }
printf("%c", key); printf("%c", key);
fflush(stdout);
} }
memcpy(last_keys, new_keys, NUM_KEYS); memcpy(last_keys, new_keys, NUM_KEYS);
} }

View File

@ -224,6 +224,7 @@ static void hid_handle_input_report(uint8_t service_index, const uint8_t * repor
continue; continue;
} }
printf("%c", key); printf("%c", key);
fflush(stdout);
} }
memcpy(last_keys, new_keys, NUM_KEYS); memcpy(last_keys, new_keys, NUM_KEYS);
} }