net/: IEEE 802.15-4 basic build build structure.

This commit is contained in:
Gregory Nutt
2016-02-25 10:43:51 -06:00
parent 1ed1765e1a
commit e4e6181098
10 changed files with 94 additions and 18 deletions
+9 -11
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* net/devif/devif.h
*
* Copyright (C) 2007-2009, 2013-2015 Gregory Nutt. All rights reserved.
* Copyright (C) 2007-2009, 2013-2016 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* This logic was leveraged from uIP which also has a BSD-style license:
@@ -296,7 +296,7 @@ void devif_initialize(void);
* Configure the pre-allocated callback structures into a free list.
*
* Assumptions:
* This function is called with interrupts disabled.
* This function must be called with the network locked.
*
****************************************************************************/
@@ -314,7 +314,7 @@ void devif_callback_init(void);
* callback.
*
* Assumptions:
* This function is called with the network locked.
* This function must be called with the network locked.
*
****************************************************************************/
@@ -336,7 +336,7 @@ FAR struct devif_callback_s *
* The callback structure will be freed in any event.
*
* Assumptions:
* This function is called with the network locked.
* This function must be called with the network locked.
*
****************************************************************************/
@@ -360,7 +360,7 @@ void devif_conn_callback_free(FAR struct net_driver_s *dev,
* The callback structure will be freed in any event.
*
* Assumptions:
* This function is called with the network locked.
* This function must be called with the network locked.
*
****************************************************************************/
@@ -386,7 +386,7 @@ void devif_dev_callback_free(FAR struct net_driver_s *dev,
* The updated flags as modified by the callback functions.
*
* Assumptions:
* This function is called with the network locked.
* This function must be called with the network locked.
*
****************************************************************************/
@@ -411,7 +411,7 @@ uint16_t devif_conn_event(FAR struct net_driver_s *dev, FAR void *pvconn,
* The updated flags as modified by the callback functions.
*
* Assumptions:
* This function is called with the network locked.
* This function must be called with the network locked.
*
****************************************************************************/
@@ -455,8 +455,7 @@ void devif_send(FAR struct net_driver_s *dev, FAR const void *buf, int len);
* in an I/O buffer chain, rather than a flat buffer.
*
* Assumptions:
* Called from the interrupt level or, at a minimum, with interrupts
* disabled.
* This function must be called with the network locked.
*
****************************************************************************/
@@ -478,8 +477,7 @@ void devif_iob_send(FAR struct net_driver_s *dev, FAR struct iob_s *buf,
* no header on the data.
*
* Assumptions:
* Called from the interrupt level or, at a minimum, with interrupts
* disabled.
* This function must be called with the network locked.
*
****************************************************************************/