L should be capitalized in 6LoWPAN

This commit is contained in:
Gregory Nutt 2017-06-18 16:02:11 -06:00
parent 2fdfa7457b
commit 2bb14d854d
3 changed files with 10 additions and 10 deletions

View File

@ -1906,7 +1906,7 @@
Kivilinna (2017-04-03). Kivilinna (2017-04-03).
* NSH: Fix some warnings about integer/pointer casts of different sizes * NSH: Fix some warnings about integer/pointer casts of different sizes
(probably only effects 64-bit simulation) (2017-04-03). (probably only effects 64-bit simulation) (2017-04-03).
* examples/nettest: Trying to adapt to use for testing 6loWPAN * examples/nettest: Trying to adapt to use for testing 6LoWPAN
(2017-04-03). (2017-04-03).
* examples/nettest: If doing loopback, but not using the official * examples/nettest: If doing loopback, but not using the official
loopback device, then use the server should use the configured client loopback device, then use the server should use the configured client
@ -1925,10 +1925,10 @@
default is +x. No printing of a trace of script commands as they are default is +x. No printing of a trace of script commands as they are
executed. From David Sidrane (2017-04-05). executed. From David Sidrane (2017-04-05).
* Print expanded variables if -x. From David Sidrane (2017-04-05). * Print expanded variables if -x. From David Sidrane (2017-04-05).
* examples/udpblaster: Several fixes to work with 6loWPAN (2017-04-06). * examples/udpblaster: Several fixes to work with 6LoWPAN (2017-04-06).
* examples/udpblaster: Add logic to bind the local UDP socket to a * examples/udpblaster: Add logic to bind the local UDP socket to a
well-known address (2017-04-06). well-known address (2017-04-06).
* 6loWPAN: Add network IOCTL support to set the node address * 6LoWPAN: Add network IOCTL support to set the node address
(2017-04-06). (2017-04-06).
* examples/ostest: Add tests for pthread_rwlock. Adding tests to be * examples/ostest: Add tests for pthread_rwlock. Adding tests to be
used to verify the pthread_rwlock lock works. From Mark Schulte used to verify the pthread_rwlock lock works. From Mark Schulte
@ -1937,9 +1937,9 @@
unconditionally (2017-04-07). unconditionally (2017-04-07).
* examples/ostest: pthread rwlock additional tests and bugfixes. From * examples/ostest: pthread rwlock additional tests and bugfixes. From
Mark Schulte (2017-04-07). Mark Schulte (2017-04-07).
* netutils: Add a helper function to convert a string to a 6loWPAN node * netutils: Add a helper function to convert a string to a 6LoWPAN node
address (2017-04-08). address (2017-04-08).
* NSH library: Extend ifconfig to support 6loWPAN. Adapt to some * NSH library: Extend ifconfig to support 6LoWPAN. Adapt to some
changes in configuration variable usage (2017-04-08). changes in configuration variable usage (2017-04-08).
* NSH set command: Eliminate useless argc check of SCRIPTS are enabled * NSH set command: Eliminate useless argc check of SCRIPTS are enabled
but ENVIRONMENT is disabled (2017-04-09). but ENVIRONMENT is disabled (2017-04-09).
@ -1995,7 +1995,7 @@
eth0 for network device name (2017-05-02). eth0 for network device name (2017-05-02).
* wireless/wext: Add drivers_wext from the WPA supplicant; Integrate * wireless/wext: Add drivers_wext from the WPA supplicant; Integrate
into NSH. From Simon Piriou (2017-05-02). into NSH. From Simon Piriou (2017-05-02).
* 6loWPAN: Replace some Rime address naming with more consistent * 6LoWPAN: Replace some Rime address naming with more consistent
short/exended address terminology (2017-05-04). short/exended address terminology (2017-05-04).
* wireless/ieee802154: Removes libradio to coincide with removal of * wireless/ieee802154: Removes libradio to coincide with removal of
ioctl with radio. Moves all functionality from libradio to libmac. ioctl with radio. Moves all functionality from libradio to libmac.

View File

@ -80,7 +80,7 @@ ifeq ($(CONFIG_NETDEV_WIRELESS_IOCTL),y)
CSRCS += netlib_getessid.c netlib_setessid.c CSRCS += netlib_getessid.c netlib_setessid.c
endif endif
# MAC address support(Ethernet and 6loWPAN only) # MAC address support(Ethernet and 6LoWPAN only)
ifeq ($(CONFIG_NET_ETHERNET),y) ifeq ($(CONFIG_NET_ETHERNET),y)
CSRCS += netlib_setmacaddr.c netlib_getmacaddr.c CSRCS += netlib_setmacaddr.c netlib_getmacaddr.c

View File

@ -123,7 +123,7 @@
# undef CONFIG_NET_LOOPBACK # undef CONFIG_NET_LOOPBACK
#endif #endif
/* Only Ethernet and 6loWPAN have MAC layer addresses */ /* Only Ethernet and 6LoWPAN have MAC layer addresses */
#undef HAVE_MAC #undef HAVE_MAC
#if defined(CONFIG_NET_ETHERNET) || defined(CONFIG_NET_6LOWPAN) #if defined(CONFIG_NET_ETHERNET) || defined(CONFIG_NET_6LOWPAN)
@ -310,7 +310,7 @@ static void nsh_set_macaddr(void)
eaddr[6] = (CONFIG_NSH_MACADDR >> (8 * 1)) & 0xff; eaddr[6] = (CONFIG_NSH_MACADDR >> (8 * 1)) & 0xff;
eaddr[7] = (CONFIG_NSH_MACADDR >> (8 * 0)) & 0xff; eaddr[7] = (CONFIG_NSH_MACADDR >> (8 * 0)) & 0xff;
/* Set the 6loWPAN extended address */ /* Set the 6LoWPAN extended address */
(void)netlib_seteaddr(NET_DEVNAME, eaddr); (void)netlib_seteaddr(NET_DEVNAME, eaddr);
@ -326,7 +326,7 @@ static void nsh_set_macaddr(void)
* Description: * Description:
* Setup IP addresses. * Setup IP addresses.
* *
* For 6loWPAN, the IP address derives from the MAC address. Setting it * For 6LoWPAN, the IP address derives from the MAC address. Setting it
* to any user provided value is asking for trouble. * to any user provided value is asking for trouble.
* *
****************************************************************************/ ****************************************************************************/