Merge branch 'master' of https://bitbucket.org/nuttx/apps into ieee802154

This commit is contained in:
Gregory Nutt 2017-04-26 15:17:09 -06:00
commit 42a2aff968
21 changed files with 451 additions and 161 deletions

View file

@ -117,7 +117,9 @@ int netlib_getmacaddr(FAR const char *ifname, FAR uint8_t *macaddr);
#ifdef CONFIG_NET_6LOWPAN
/* Get IEEE802.15.4 MAC driver node address */
int netlib_getpanid(FAR const char *ifname, FAR uint16_t *panid);
int netlib_setnodeaddr(FAR const char *ifname, FAR const uint8_t *nodeaddr);
int netlib_setpanid(FAR const char *ifname, uint16_t panid);
bool netlib_nodeaddrconv(FAR const char *hwstr, FAR uint8_t *hw);
#endif