File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -796,9 +796,7 @@ int8_t sendchar(uint8_t c) {
796
796
}
797
797
#endif /* CONSOLE_ENABLE */
798
798
799
- void _putchar (char character ) {
800
- sendchar (character );
801
- }
799
+ void _putchar (char character ) { sendchar (character ); }
802
800
803
801
#ifdef RAW_ENABLE
804
802
void raw_hid_send (uint8_t * data , uint8_t length ) {
Original file line number Diff line number Diff line change @@ -556,7 +556,7 @@ static void send_keyboard(report_keyboard_t *report) {
556
556
uint8_t timeout = 255 ;
557
557
558
558
#ifdef BLUETOOTH_ENABLE
559
- uint8_t where = where_to_send ();
559
+ uint8_t where = where_to_send ();
560
560
561
561
if (where == OUTPUT_BLUETOOTH || where == OUTPUT_USB_AND_BT ) {
562
562
# ifdef MODULE_ADAFRUIT_BLE
@@ -621,7 +621,7 @@ static void send_mouse(report_mouse_t *report) {
621
621
uint8_t timeout = 255 ;
622
622
623
623
# ifdef BLUETOOTH_ENABLE
624
- uint8_t where = where_to_send ();
624
+ uint8_t where = where_to_send ();
625
625
626
626
if (where == OUTPUT_BLUETOOTH || where == OUTPUT_USB_AND_BT ) {
627
627
# ifdef MODULE_ADAFRUIT_BLE
You can’t perform that action at this time.
0 commit comments