2016-07-01 15:31:10 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Inria
|
|
|
|
* 2016 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup drivers_cc2420
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Netdev interface for the CC2420
|
|
|
|
*
|
|
|
|
* @author Francisco Acosta <francisco.acosta@inria.fr>
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef CC2420_NETDEV_H
|
|
|
|
#define CC2420_NETDEV_H
|
2016-07-01 15:31:10 +02:00
|
|
|
|
2017-02-15 13:07:34 +01:00
|
|
|
#include "net/netdev.h"
|
2016-07-01 15:31:10 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Reference to the netdev device driver struct
|
|
|
|
*/
|
2017-02-15 13:07:34 +01:00
|
|
|
extern const netdev_driver_t cc2420_driver;
|
2016-07-01 15:31:10 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* CC2420_NETDEV_H */
|
2016-07-01 15:31:10 +02:00
|
|
|
/** @} */
|