1
0
Fork 0

Manually run formatting job (#11797)

This commit is contained in:
Joel Challis 2021-02-05 13:27:24 +00:00 committed by GitHub
parent 18babeae49
commit b2d0e8a491
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 19 deletions

View file

@ -697,9 +697,7 @@ void send_byte(uint8_t number) {
send_nibble(number & 0xF);
}
void send_nibble(uint8_t number) {
tap_code16(hex_to_keycode(number));
}
void send_nibble(uint8_t number) { tap_code16(hex_to_keycode(number)); }
__attribute__((weak)) uint16_t hex_to_keycode(uint8_t hex) {
hex = hex & 0xF;