Apply coding standards to M100, break up into functions
This commit is contained in:
parent
ba85faabc0
commit
03aa9a390e
3 changed files with 209 additions and 198 deletions
|
|
@ -43,7 +43,7 @@ char* hex_word(const uint16_t w) {
|
|||
return _hex;
|
||||
}
|
||||
|
||||
void print_hex_nybble(const uint8_t n) { SERIAL_CHAR(hex_nybble(n)); }
|
||||
void print_hex_nybble(const uint8_t n) { SERIAL_CHAR(hex_nybble(n)); }
|
||||
void print_hex_byte(const uint8_t b) { SERIAL_ECHO(hex_byte(b)); }
|
||||
void print_hex_word(const uint16_t w) { SERIAL_ECHO(hex_word(w)); }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue