|
From: Angel I. C. R. <al0...@gm...> - 2016-08-22 15:15:32
|
Hi forum.
File contiki-conf.h for the OpenMote platform specifies a
IEEE_ADDR_CONF_HARDCODED macro predefined with value 0, what means: "Read
from InfoPage".
/**
* \brief Location of the IEEE address
* 0 => Read from InfoPage,
* 1 => Use a hardcoded address, configured by IEEE_ADDR_CONF_ADDRESS
*/
#ifndef IEEE_ADDR_CONF_HARDCODED
#define IEEE_ADDR_CONF_HARDCODED 0
#endif
/**
* \brief The hardcoded IEEE address to be used when
IEEE_ADDR_CONF_HARDCODED
* is defined as 1
*/
#ifndef IEEE_ADDR_CONF_ADDRESS
#define IEEE_ADDR_CONF_ADDRESS { 0x00, 0x12, 0x4B, 0x00, 0x89, 0xAB, 0xCD,
0xEF }
#endif
Where is that "InfoPage" available in the OpenMote platform? And how can be
used to set the IPv6 address of mote?
Thanks in advance!
Best regards,
|