Skip to content
Snippets Groups Projects
Commit 433598a3 authored by Grzegorz Daniluk's avatar Grzegorz Daniluk
Browse files

fix displaying local mac when the core starts

parent 15739fe5
Branches
Tags
No related merge requests found
......@@ -80,9 +80,9 @@ static void wrc_initialize(void)
mac_addr[5] = 0x66; //
}
TRACE_DEV("Local MAC address: %x:%x:%x:%x:%x:%x\n", mac_addr[0],
mac_addr[1], mac_addr[2], mac_addr[3], mac_addr[4],
mac_addr[5]);
pp_printf("Local MAC address: %02x:%02x:%02x:%02x:%02x:%02x\n",
mac_addr[0], mac_addr[1], mac_addr[2], mac_addr[3],
mac_addr[4], mac_addr[5]);
ep_init(mac_addr);
ep_enable(1, 1);
......
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