2015-08-26 10:21:26 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Freie Universität Berlin
|
|
|
|
* 2015 Kaspar Schleiser <kaspar@schleiser.de>
|
|
|
|
*
|
|
|
|
* 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_cc110x
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
2017-02-15 13:07:34 +01:00
|
|
|
* @brief Variables for the cc110x netdev interface
|
2015-08-26 10:21:26 +02:00
|
|
|
*
|
|
|
|
* @author Fabian Nack <nack@inf.fu-berlin.de>
|
|
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CC110X_NETDEV_H
|
|
|
|
#define CC110X_NETDEV_H
|
|
|
|
|
|
|
|
#include "periph/gpio.h"
|
|
|
|
#include "periph/spi.h"
|
2017-02-15 13:07:34 +01:00
|
|
|
#include "net/netdev.h"
|
2015-08-26 10:21:26 +02:00
|
|
|
#include "cc110x.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2017-02-15 13:07:34 +01:00
|
|
|
* @brief Implementation of netdev_driver_t for CC110X device
|
2015-08-26 10:21:26 +02:00
|
|
|
*/
|
2017-02-15 13:07:34 +01:00
|
|
|
extern const netdev_driver_t netdev_cc110x_driver;
|
2015-08-26 10:21:26 +02:00
|
|
|
|
|
|
|
/**
|
2017-02-15 13:07:34 +01:00
|
|
|
* @brief cc110x netdev struct
|
2015-08-26 10:21:26 +02:00
|
|
|
*/
|
2017-02-15 13:07:34 +01:00
|
|
|
typedef struct netdev_cc110x {
|
|
|
|
netdev_t netdev; /**< writing obious */
|
2015-08-26 10:21:26 +02:00
|
|
|
cc110x_t cc110x; /**< documentation here */
|
2017-02-15 13:07:34 +01:00
|
|
|
} netdev_cc110x_t;
|
2015-08-26 10:21:26 +02:00
|
|
|
|
2016-01-29 15:49:10 +01:00
|
|
|
/**
|
|
|
|
* @brief Received packet status information for cc110x radios
|
|
|
|
*/
|
2017-02-15 13:07:34 +01:00
|
|
|
typedef struct netdev_radio_rx_info netdev_cc110x_rx_info_t;
|
2015-08-26 10:21:26 +02:00
|
|
|
|
|
|
|
/**
|
2017-02-15 13:07:34 +01:00
|
|
|
* @brief netdev <-> cc110x glue code initialization function
|
2015-08-26 10:21:26 +02:00
|
|
|
*
|
2017-02-15 13:07:34 +01:00
|
|
|
* @param[out] netdev_cc110x ptr to netdev_cc110x struct ti initialize
|
2015-08-26 10:21:26 +02:00
|
|
|
* @param[in] params cc110x IO parameter struct to use
|
|
|
|
*
|
|
|
|
* @return 0 on success
|
|
|
|
* @return -1 on error
|
|
|
|
*/
|
2017-02-15 13:07:34 +01:00
|
|
|
int netdev_cc110x_setup(netdev_cc110x_t *netdev_cc110x, const cc110x_params_t *params);
|
2015-08-26 10:21:26 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CC110X_NETDEV_H */
|