2015-04-23 18:36:55 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-08-09 21:24:55 +02:00
|
|
|
* @ingroup drivers_at86rf2xx
|
2015-04-23 18:36:55 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Netdev interface to AT86RF2xx drivers
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef AT86RF2XX_NETDEV_H
|
|
|
|
#define AT86RF2XX_NETDEV_H
|
2015-04-23 18:36:55 +02:00
|
|
|
|
2017-02-15 13:07:34 +01:00
|
|
|
#include "net/netdev.h"
|
2015-04-23 18:36:55 +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 at86rf2xx_driver;
|
2015-04-23 18:36:55 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* AT86RF2XX_NETDEV_H */
|
2015-04-23 18:36:55 +02:00
|
|
|
/** @} */
|