diff --git a/net/ieee802154/Kconfig b/net/ieee802154/Kconfig index c6ff2f0eaf..e5749ebbf7 100644 --- a/net/ieee802154/Kconfig +++ b/net/ieee802154/Kconfig @@ -13,7 +13,7 @@ config NET_IEEE802154 ---help--- Enable support for raw, IEEE 802.15.4 sockets. - Raw sockets allow receiving and transmitting IEEE 802.15.3 radio + Raw sockets allow receiving and transmitting IEEE 802.15.4 radio frames without a layer2 protocol such as 6LoWPAN in between. Frames received are copied into a IEEE 802.15.4 socket tap before they enter the network. Frames written into a IEEE 802.15.4 socket will @@ -23,7 +23,7 @@ config NET_IEEE802154 if NET_IEEE802154 config NET_IEEE802154_FRAMELEN - int "IEEE802.15.4 Frame Length" + int "IEEE 802.15.4 Frame Length" default 127 range 1 999999 ---help--- diff --git a/net/ieee802154/ieee802154.h b/net/ieee802154/ieee802154.h index e9010bbb47..9331e7ce2e 100644 --- a/net/ieee802154/ieee802154.h +++ b/net/ieee802154/ieee802154.h @@ -66,7 +66,7 @@ /* Frame size */ -/* This maximum size of an IEEE802.15.4 frame. Certain, non-standard +/* This maximum size of an IEEE 802.15.4 frame. Certain, non-standard * devices may exceed this value, however. */ @@ -175,7 +175,7 @@ void ieee802154_initialize(void); * Name: ieee802154_conn_initialize * * Description: - * Initialize the IEEE 802.15.5 connection structure allocator. Called + * Initialize the IEEE 802.15.4 connection structure allocator. Called * once and only from ieee802154_initialize(). * * Assumptions: diff --git a/net/ieee802154/ieee802154_conn.c b/net/ieee802154/ieee802154_conn.c index dd159e146c..c97d4e2980 100644 --- a/net/ieee802154/ieee802154_conn.c +++ b/net/ieee802154/ieee802154_conn.c @@ -83,7 +83,7 @@ static dq_queue_t g_active_ieee802154_connections; * Name: ieee802154_conn_initialize * * Description: - * Initialize the IEEE 802.15.5 connection structure allocator. Called + * Initialize the IEEE 802.15.4 connection structure allocator. Called * once and only from ieee802154_initialize(). * * Assumptions: diff --git a/net/ieee802154/ieee802154_container.c b/net/ieee802154/ieee802154_container.c index 88f01755de..eea7d1d5e3 100644 --- a/net/ieee802154/ieee802154_container.c +++ b/net/ieee802154/ieee802154_container.c @@ -1,5 +1,5 @@ /**************************************************************************** - * wireless/pktradio/ieee802154_container.c + * net/ieee802154/ieee802154_container.c * * Copyright (C) 2017 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/net/ieee802154/ieee802154_sendto.c b/net/ieee802154/ieee802154_sendto.c index 77231ceb8d..48e16f2be2 100644 --- a/net/ieee802154/ieee802154_sendto.c +++ b/net/ieee802154/ieee802154_sendto.c @@ -163,7 +163,7 @@ static inline bool ieee802154_eaddrnull(FAR const uint8_t *eaddr) * * Description: * Based on the collected attributes and addresses, construct the MAC meta - * data structure that we need to interface with the IEEE802.15.4 MAC. + * data structure that we need to interface with the IEEE 802.15.4 MAC. * * Input Parameters: * radio - Radio network driver state instance.