1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/cc110x/include/cc110x-netdev.h

68 lines
1.6 KiB
C
Raw Normal View History

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
* @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"
#include "net/netdev.h"
2015-08-26 10:21:26 +02:00
#include "cc110x.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Implementation of netdev_driver_t for CC110X device
2015-08-26 10:21:26 +02:00
*/
extern const netdev_driver_t netdev_cc110x_driver;
2015-08-26 10:21:26 +02:00
/**
* @brief cc110x netdev struct
2015-08-26 10:21:26 +02:00
*/
typedef struct netdev_cc110x {
netdev_t netdev; /**< writing obious */
2015-08-26 10:21:26 +02:00
cc110x_t cc110x; /**< documentation here */
} 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
*/
typedef struct netdev_radio_rx_info netdev_cc110x_rx_info_t;
2015-08-26 10:21:26 +02:00
/**
* @brief netdev <-> cc110x glue code initialization function
2015-08-26 10:21:26 +02: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
*/
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 */
2017-08-29 18:00:46 +02:00
/** @} */