Apply coding standards to M100, break up into functions

This commit is contained in:
Scott Lahteine
2017-04-10 19:19:22 -05:00
parent ba85faabc0
commit 03aa9a390e
3 changed files with 209 additions and 198 deletions

View File

@ -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)); }