diff options
author | Joel Challis <git@zvecr.com> | 2021-02-05 13:27:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 13:27:24 +0000 |
commit | b2d0e8a491f347d43b482808a744642fc975afab (patch) | |
tree | 177e05eab66844bb029829df75611106cccb37cb /quantum/quantum.c | |
parent | 18babeae49dc933f7a07e123241ae2a78a75f168 (diff) | |
download | qmk_firmware-b2d0e8a491f347d43b482808a744642fc975afab.tar.gz qmk_firmware-b2d0e8a491f347d43b482808a744642fc975afab.zip |
Manually run formatting job (#11797)
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 71a05d387..cf16e953a 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
@@ -697,9 +697,7 @@ void send_byte(uint8_t number) { | |||
697 | send_nibble(number & 0xF); | 697 | send_nibble(number & 0xF); |
698 | } | 698 | } |
699 | 699 | ||
700 | void send_nibble(uint8_t number) { | 700 | void send_nibble(uint8_t number) { tap_code16(hex_to_keycode(number)); } |
701 | tap_code16(hex_to_keycode(number)); | ||
702 | } | ||
703 | 701 | ||
704 | __attribute__((weak)) uint16_t hex_to_keycode(uint8_t hex) { | 702 | __attribute__((weak)) uint16_t hex_to_keycode(uint8_t hex) { |
705 | hex = hex & 0xF; | 703 | hex = hex & 0xF; |