at86rf231 TX and RX driver is using vtimer instead of hwtimer_ functions, TO CHECK vtimer debug function prototype fix
10 lines
177 B
C
10 lines
177 B
C
#ifndef AT86RF231_SPI_H_
|
|
#define AT86RF231_SPI_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
uint8_t at86rf231_reg_read(uint8_t addr);
|
|
void at86rf231_reg_write(uint8_t addr, uint8_t value);
|
|
|
|
#endif
|