8 lines
247 B
C
8 lines
247 B
C
#include <avr/eeprom.h>
|
|
|
|
/* Link layer ipv6 address will become fe80::101 */
|
|
uint8_t mac_address[8] EEMEM = {0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01};
|
|
uint8_t server_name[16] EEMEM = "muninn";
|
|
uint8_t domain_name[30] EEMEM = "localhost";
|
|
|