Add optional RF230BB radio driver

This commit is contained in:
dak664 2010-02-16 22:17:51 +00:00
parent b0930cf2ec
commit 53801ffbb1
5 changed files with 265 additions and 43 deletions

View file

@ -48,8 +48,10 @@
#ifndef SICSLOW_ETHERNET_H
#define SICSLOW_ETHERNET_H
#if !RF230BB
#include "sicslowmac.h"
#include "frame.h"
#endif
typedef enum {
ll_802154_type,
@ -75,8 +77,10 @@ int8_t mac_translateIPLinkLayer(lltype_t target);
void mac_LowpanToEthernet(void);
void mac_ethernetToLowpan(uint8_t * ethHeader);
void mac_ethernetSetup(void);
#if !RF230BB
void mac_802154raw(const struct mac_driver *r);
void mac_logTXtoEthernet(frame_create_params_t *p,frame_result_t *frame_result);
#endif
#endif