Patch hex_print
This commit is contained in:
		
				
					committed by
					
						 Scott Lahteine
						Scott Lahteine
					
				
			
			
				
	
			
			
			
						parent
						
							02eb4bd806
						
					
				
				
					commit
					f395960741
				
			| @@ -78,7 +78,7 @@ 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));    } | ||||
| void print_hex_address(const void * const w) { SERIAL_ECHO(hex_address(w)); } | ||||
|  | ||||
| void print_hex_long(const uintptr_t w, const char delimiter) { | ||||
| void print_hex_long(const uint32_t w, const char delimiter) { | ||||
|   SERIAL_ECHOPGM("0x"); | ||||
|   for (int B = 24; B >= 8; B -= 8){ | ||||
|     print_hex_byte(w >> B); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user