From bd309348bf48fa6ca30bd4f9e240dda3e82664af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Tue, 7 Jan 2014 10:50:22 +0000 Subject: [PATCH] changed MAC address to original address dbug assigns --- BaS_gcc/sys/BaS.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaS_gcc/sys/BaS.c b/BaS_gcc/sys/BaS.c index 72c0900..eb02d1e 100644 --- a/BaS_gcc/sys/BaS.c +++ b/BaS_gcc/sys/BaS.c @@ -251,7 +251,7 @@ static ARP_INFO arp_info; void network_init(void) { - uint8_t mac[6] = {0x00, 0xcf, 0x54, 0x12, 0x34, 0x56}; + uint8_t mac[6] = {0x00, 0xcf, 0x54, 0x85, 0xcf, 0x01}; /* this is the original MAC address dbug assigns */ uint8_t bc[6] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; /* this is our broadcast MAC address */ IP_ADDR myip = {192, 168, 1, 100}; IP_ADDR gateway = {192, 168, 1, 1};