summaryrefslogtreecommitdiff
path: root/apps/examples/poll
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-19 22:32:19 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-19 22:32:19 +0000
commit4faeb216ded5ad12b709988a52e1bdbbe06eafee (patch)
tree07fab6defe3d5b4d913c978259a011b86e9e7851 /apps/examples/poll
parent5d2cb5987bd1487b5aada95997843ad1c1b796b0 (diff)
downloadnuttx-4faeb216ded5ad12b709988a52e1bdbbe06eafee.tar.gz
nuttx-4faeb216ded5ad12b709988a52e1bdbbe06eafee.tar.bz2
nuttx-4faeb216ded5ad12b709988a52e1bdbbe06eafee.zip
Fix some questionable MAC addresses
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4956 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/poll')
-rw-r--r--apps/examples/poll/net_listener.c8
-rw-r--r--apps/examples/poll/net_reader.c8
2 files changed, 8 insertions, 8 deletions
diff --git a/apps/examples/poll/net_listener.c b/apps/examples/poll/net_listener.c
index 4bde567fb..81ad7cdcc 100644
--- a/apps/examples/poll/net_listener.c
+++ b/apps/examples/poll/net_listener.c
@@ -300,10 +300,10 @@ static void net_configure(void)
#ifdef CONFIG_EXAMPLE_POLL_NOMAC
mac[0] = 0x00;
mac[1] = 0xe0;
- mac[2] = 0xb0;
- mac[3] = 0x0b;
- mac[4] = 0xba;
- mac[5] = 0xbe;
+ mac[2] = 0xde;
+ mac[3] = 0xad;
+ mac[4] = 0xbe;
+ mac[5] = 0xef;
uip_setmacaddr("eth0", mac);
#endif
diff --git a/apps/examples/poll/net_reader.c b/apps/examples/poll/net_reader.c
index ea0accc8d..8a13618c3 100644
--- a/apps/examples/poll/net_reader.c
+++ b/apps/examples/poll/net_reader.c
@@ -93,10 +93,10 @@ static void net_configure(void)
#ifdef CONFIG_EXAMPLE_POLL_NOMAC
mac[0] = 0x00;
mac[1] = 0xe0;
- mac[2] = 0xb0;
- mac[3] = 0x0b;
- mac[4] = 0xba;
- mac[5] = 0xbe;
+ mac[2] = 0xde;
+ mac[3] = 0xad;
+ mac[4] = 0xbe;
+ mac[5] = 0xef;
uip_setmacaddr("eth0", mac);
#endif