Skip to content

Commit 1e8b7ee

Browse files
author
Ronnie Beck
committed
Fixed erronous GetVar() call. The setting the MAC Address should work on ApolloOS now.
1 parent c052358 commit 1e8b7ee

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

source/device.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ ASM SAVEDS LONG DevOpen( ASMR(a1) struct IOSana2Req *ioreq ASMREG(a1),
296296
hw_SetMacAddress( db, unit, macAddress );
297297
#else
298298
char MACAddressStr[32];
299-
LONG variableLength = GetVar( "V4NETMAC", MACAddressStr, sizeof( MACAddressStr ), GVF_GLOBAL_ONLY|GVF_LOCAL_ONLY );
299+
LONG variableLength = GetVar( "V4NETMAC", MACAddressStr, sizeof( MACAddressStr ), GVF_GLOBAL_ONLY );
300300
char macAddress[6] = { 0x06,0x80,0x11,0x01,0x02,0x03 };
301301

302302
//See if we have an FPGA-ID

source/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
#define _INC_VERSION_H
1010

1111
#define DEVICEVERSION 2
12-
#define DEVICEREVISION 34
12+
#define DEVICEREVISION 35
1313
#define DEVICEEXTRA 0
1414
/* #define DEVICEEXTRA Beta */
15-
#define DEVICEDATE 22.1.2023
15+
#define DEVICEDATE 6.2.2023
1616

1717
#endif

0 commit comments

Comments
 (0)