Add hex routine to print an address

This commit is contained in:
Scott Lahteine
2017-04-12 19:39:26 -05:00
committed by Scott Lahteine
parent 4542282f5e
commit e05d050a1e
5 changed files with 38 additions and 33 deletions

View File

@ -36,10 +36,12 @@ inline char hex_nybble(const uint8_t n) {
}
char* hex_byte(const uint8_t b);
char* hex_word(const uint16_t w);
char* hex_address(const void * const w);
void print_hex_nybble(const uint8_t n);
void print_hex_byte(const uint8_t b);
void print_hex_word(const uint16_t w);
void print_hex_address(const void * const w);
#endif // AUTO_BED_LEVELING_UBL || M100_FREE_MEMORY_WATCHER
#endif // HEX_PRINT_ROUTINES_H