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

117 lines
2.2 KiB
C
Raw Normal View History

2013-08-29 14:41:55 +02:00
/**
* nativenet transceiver interface
*
* A configurable transceiver for the native port.
*
* At the moment only the tap interface is supported, but more network
* layers are intended. So the "configurable" part is a lie for now ;-)
* The effect of calls like nativenet_set_channel depend on the
* network layer.
*
* Copyright (C) 2013 Ludwig Ortmann
*
* This file subject to the terms and conditions of the GNU Lesser General
* Public License. See the file LICENSE in the top level directory for more
* details.
*/
/**
* @defgroup native_net
* @{
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
*/
2013-08-15 19:39:29 +02:00
#ifndef NATIVENET_H
#define NATIVENET_H
2013-08-08 11:08:33 +02:00
#include <net/ethernet.h>
#define RX_BUF_SIZE (10)
#define TRANSCEIVER_BUFFER_SIZE (3)
#ifndef NATIVE_MAX_DATA_LENGTH
2013-08-29 15:12:06 +02:00
#include "tap.h"
#define NATIVE_MAX_DATA_LENGTH (TAP_MAX_DATA)
2013-08-08 11:08:33 +02:00
#else
2013-08-29 15:12:06 +02:00
#warning be careful not to exceed (TAP_MAX_DATA) with NATIVE_MAX_DATA_LENGTH
2013-08-08 11:08:33 +02:00
#endif /* NATIVE_MAX_DATA_LENGTH */
2013-08-29 14:41:55 +02:00
/**
* Initialize transceiver
*
* @param transceiver_pid the pid of the transceiver thread
*/
2013-08-08 11:08:33 +02:00
void nativenet_init(int transceiver_pid);
2013-08-29 14:41:55 +02:00
/**
* Shutdown transceiver
*/
2013-08-08 11:08:33 +02:00
void nativenet_powerdown();
2013-08-29 14:41:55 +02:00
/**
* Enable/disable monitor mode
*
* @param mode 0 off, 1 on
*/
2013-08-08 11:08:33 +02:00
void nativenet_set_monitor(uint8_t mode);
2013-08-29 14:41:55 +02:00
/**
* Send a packet
*
* @param packet a radio packet
* @return 1 on success, 0 otherwise
*/
2013-08-08 11:08:33 +02:00
uint8_t nativenet_send(radio_packet_t *packet);
2013-08-29 14:41:55 +02:00
/**
* Set transceiver address
*
* @param address the address
* @return the address
*/
2013-08-21 19:22:32 +02:00
radio_address_t nativenet_set_address(radio_address_t address);
2013-08-29 14:41:55 +02:00
/**
* Get transceiver address
*
* @return the address
*/
2013-08-21 19:22:32 +02:00
radio_address_t nativenet_get_address();
2013-08-08 11:08:33 +02:00
2013-08-29 14:41:55 +02:00
/**
* Set transceiver channel
*
* @param channel the channel
* @return the channel
*/
2013-08-08 11:08:33 +02:00
int16_t nativenet_set_channel(uint8_t channel);
2013-08-29 14:41:55 +02:00
/**
* Get transceiver channel
*
* @return the channel
*/
2013-08-08 11:08:33 +02:00
int16_t nativenet_get_channel();
2013-08-29 14:41:55 +02:00
/**
* Set transceiver pan
*
* @param channel the pan
* @return the pan
*/
2013-08-08 11:08:33 +02:00
uint16_t nativenet_set_pan(uint16_t pan);
2013-08-29 14:41:55 +02:00
/**
* Get transceiver pan
*
* @return the pan
*/
2013-08-08 11:08:33 +02:00
uint16_t nativenet_get_pan();
2013-08-29 14:41:55 +02:00
/**
* Enable transceiver rx mode
*/
2013-08-08 11:08:33 +02:00
void nativenet_switch_to_rx();
2013-08-29 14:41:55 +02:00
/** @} */
2013-08-15 19:39:29 +02:00
#endif /* NATIVENET_H */