Switch POST code display to hexadecimal

parent 0808f765
......@@ -400,7 +400,7 @@ static void set_led_post_code_alphanumeric_display(uint16_t value)
// Convert POST code to string
unsigned char post_code_string[5];
snprintf(post_code_string, 5, "%02d%02d", (value >> 8) & 0xff, value & 0xff);
snprintf(post_code_string, 5, "%02x%02x", (value >> 8) & 0xff, value & 0xff);
if ((host_power_status == HOST_POWER_STATUS_IPLING) && (value != 0x0))
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment