net/ieee802154: Fix some typos noted when cloning to create net/bluetooth.

This commit is contained in:
Gregory Nutt
2018-03-30 11:33:21 -06:00
parent d62649757c
commit a2f237065c
5 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ config NET_IEEE802154
---help--- ---help---
Enable support for raw, IEEE 802.15.4 sockets. 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 frames without a layer2 protocol such as 6LoWPAN in between. Frames
received are copied into a IEEE 802.15.4 socket tap before they 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 enter the network. Frames written into a IEEE 802.15.4 socket will
@@ -23,7 +23,7 @@ config NET_IEEE802154
if NET_IEEE802154 if NET_IEEE802154
config NET_IEEE802154_FRAMELEN config NET_IEEE802154_FRAMELEN
int "IEEE802.15.4 Frame Length" int "IEEE 802.15.4 Frame Length"
default 127 default 127
range 1 999999 range 1 999999
---help--- ---help---
+2 -2
View File
@@ -66,7 +66,7 @@
/* Frame size */ /* 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. * devices may exceed this value, however.
*/ */
@@ -175,7 +175,7 @@ void ieee802154_initialize(void);
* Name: ieee802154_conn_initialize * Name: ieee802154_conn_initialize
* *
* Description: * 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(). * once and only from ieee802154_initialize().
* *
* Assumptions: * Assumptions:
+1 -1
View File
@@ -83,7 +83,7 @@ static dq_queue_t g_active_ieee802154_connections;
* Name: ieee802154_conn_initialize * Name: ieee802154_conn_initialize
* *
* Description: * 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(). * once and only from ieee802154_initialize().
* *
* Assumptions: * Assumptions:
+1 -1
View File
@@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* wireless/pktradio/ieee802154_container.c * net/ieee802154/ieee802154_container.c
* *
* Copyright (C) 2017 Gregory Nutt. All rights reserved. * Copyright (C) 2017 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
+1 -1
View File
@@ -163,7 +163,7 @@ static inline bool ieee802154_eaddrnull(FAR const uint8_t *eaddr)
* *
* Description: * Description:
* Based on the collected attributes and addresses, construct the MAC meta * 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: * Input Parameters:
* radio - Radio network driver state instance. * radio - Radio network driver state instance.