Contiki 2.5
makefsdata.h
1 #include <avr/eeprom.h>
2 
3 /* Link layer ipv6 address will become fe80::11:22ff:fe33:4455 */
4 uint8_t default_mac_address[8] PROGMEM = {0x02, 0x11, 0x22, 0xff, 0xfe, 0x33, 0x44, 0x55};
5 uint8_t default_server_name[16] PROGMEM = "Contiki-Raven";
6 uint8_t default_domain_name[30] PROGMEM = "localhost";
7 uint8_t eemem_mac_address[8] EEMEM = {0x02, 0x11, 0x22, 0xff, 0xfe, 0x33, 0x44, 0x55};
8 uint8_t eemem_server_name[16] EEMEM = "Contiki-Raven";
9 uint8_t eemem_domain_name[30] EEMEM = "localhost";
10