qmk cformat on develop (#9501)

This commit is contained in:
Nick Brassel
2020-06-22 11:22:00 +10:00
committed by Drashna Jael're
parent ce09c5c922
commit 0f599bb7ef
2 changed files with 3 additions and 5 deletions

View File

@@ -847,9 +847,7 @@ int8_t sendchar(uint8_t c) {
} }
#endif /* CONSOLE_ENABLE */ #endif /* CONSOLE_ENABLE */
void _putchar(char character) { void _putchar(char character) { sendchar(character); }
sendchar(character);
}
#ifdef RAW_ENABLE #ifdef RAW_ENABLE
void raw_hid_send(uint8_t *data, uint8_t length) { void raw_hid_send(uint8_t *data, uint8_t length) {

View File

@@ -668,7 +668,7 @@ static void send_keyboard(report_keyboard_t *report) {
uint8_t timeout = 255; uint8_t timeout = 255;
#ifdef BLUETOOTH_ENABLE #ifdef BLUETOOTH_ENABLE
uint8_t where = where_to_send(); uint8_t where = where_to_send();
if (where == OUTPUT_BLUETOOTH || where == OUTPUT_USB_AND_BT) { if (where == OUTPUT_BLUETOOTH || where == OUTPUT_USB_AND_BT) {
# ifdef MODULE_ADAFRUIT_BLE # ifdef MODULE_ADAFRUIT_BLE
@@ -733,7 +733,7 @@ static void send_mouse(report_mouse_t *report) {
uint8_t timeout = 255; uint8_t timeout = 255;
# ifdef BLUETOOTH_ENABLE # ifdef BLUETOOTH_ENABLE
uint8_t where = where_to_send(); uint8_t where = where_to_send();
if (where == OUTPUT_BLUETOOTH || where == OUTPUT_USB_AND_BT) { if (where == OUTPUT_BLUETOOTH || where == OUTPUT_USB_AND_BT) {
# ifdef MODULE_ADAFRUIT_BLE # ifdef MODULE_ADAFRUIT_BLE