|
Message
From: cvs at opencores.org<cvs@o...>
Date: Mon Jan 28 04:01:58 CET 2008
Subject: [cvs-checkins] MODIFIED: mlite ...
Date: 00/08/01 28:04:01 Modified: mlite/tools etermip.c Log: Permit IPInit() to set macAddress and name Revision Changes Path 1.4 mlite/tools/etermip.c http://www.opencores.org/cvsweb.shtml/mlite/tools/etermip.c.diff?r1=1.3&r2=1.4 (In the diff below, changes in quantity of whitespace are not shown.) Index: etermip.c =================================================================== RCS file: /cvsroot/rhoads/mlite/tools/etermip.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -b -r1.3 -r1.4 --- etermip.c 7 Jan 2008 01:30:48 -0000 1.3 +++ etermip.c 28 Jan 2008 03:01:58 -0000 1.4 @@ -66,7 +66,7 @@ extern void *IPFrameGet(int freeCount); extern int IPProcessEthernetPacket(void *frameIn, int length); extern void IPTick(void); - extern void IPInit(void (*frameSendFunction)()); + extern void IPInit(void (*frameSendFunction)(), uint8 macAddress[6], char name[6]); extern void HtmlInit(int UseFiles); extern void ConsoleInit(void); static void *ethFrame; @@ -379,7 +379,7 @@ else downloadSkip = 1; #else - IPInit(EthernetSendPacket); + IPInit(EthernetSendPacket, NULL, NULL); HtmlInit(1); ConsoleInit(); #endif
|
 |