2009-07-23 17:43:51 +00:00
|
|
|
#include <avr/eeprom.h>
|
|
|
|
|
|
|
|
/* Link layer ipv6 address will become fe80::11:22ff:fe33:4455 */
|
2012-06-10 16:54:11 +00:00
|
|
|
const uint8_t default_mac_address[8] PROGMEM = {0x02, 0x11, 0x22, 0xff, 0xfe, 0x33, 0x44, 0x55};
|
|
|
|
const uint8_t default_server_name[16] PROGMEM = "Contiki-Raven";
|
|
|
|
const uint8_t default_domain_name[30] PROGMEM = "localhost";
|
2011-08-28 20:22:39 +00:00
|
|
|
uint8_t eemem_mac_address[8] EEMEM = {0x02, 0x11, 0x22, 0xff, 0xfe, 0x33, 0x44, 0x55};
|
|
|
|
uint8_t eemem_server_name[16] EEMEM = "Contiki-Raven";
|
|
|
|
uint8_t eemem_domain_name[30] EEMEM = "localhost";
|
2009-07-23 17:43:51 +00:00
|
|
|
|