Add hex routine to print an address
This commit is contained in:
committed by
Scott Lahteine
parent
4542282f5e
commit
e05d050a1e
@ -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
|
||||
|
Reference in New Issue
Block a user