Contiki 2.6

makefsdata.h

00001 #include <avr/eeprom.h>
00002 
00003 /* Link layer ipv6 address will become fe80::ff:fe:1 */
00004 const uint8_t default_mac_address[8]  PROGMEM = {0x02, 0x00, 0x00, 0xff, 0xfe, 0x00, 0x00, 0x01};
00005 const uint8_t default_server_name[16] PROGMEM = "ATMEGA128rfa1";
00006 const uint8_t default_domain_name[30] PROGMEM = "localhost";
00007 uint8_t eemem_mac_address[8]      EEMEM = {0x02, 0x00, 0x00, 0xff, 0xfe, 0x00, 0x00, 0x01};
00008 uint8_t eemem_server_name[16]     EEMEM = "ATMEGA128rfa1";
00009 uint8_t eemem_domain_name[30]     EEMEM = "localhost";
00010