mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
11bb09b7f8
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
|