2016-05-20 17:13:31 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Phytec Messtechnik GmbH
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-01-23 11:06:37 +01:00
|
|
|
* @ingroup drivers_kw2xrf
|
2016-05-20 17:13:31 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Netdev interface for kw2xrf driver
|
|
|
|
*
|
|
|
|
* @author Johann Fischer <j.fischer@phytec.de>
|
|
|
|
*/
|
|
|
|
|
2017-01-23 11:06:37 +01:00
|
|
|
#ifndef KW2XRF_NETDEV_H
|
|
|
|
#define KW2XRF_NETDEV_H
|
|
|
|
|
2016-05-20 17:13:31 +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 kw2xrf_driver;
|
2016-05-20 17:13:31 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2017-01-23 11:06:37 +01:00
|
|
|
|
|
|
|
#endif /* KW2XRF_NETDEV_H */
|
2016-05-20 17:13:31 +02:00
|
|
|
/** @} */
|