Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start sending Bluetooth keystrokes directly
This was added to support the SEND_STRING macros, which send all keystrokes at once without returning to the matrix update loop, which meant the update function did not run and the transmission buffer was not emptied. However, if you would like to use SEND_STRING macros with this commit you still need to use the delayed version, otherwise you will overwhelm the Bluetooth UART connection with keystrokes. Example: ``` send_string_with_delay_P(PSTR("QMK is the best thing ever!"), 50); ```
- Loading branch information