mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
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
|