blob: 6bd30137dbe565d509ab09d24c79a5e5398aa29c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef RFM69_H
#define RFM69_H
#include <stdint.h>
void rfm_init(void);
void rfm_sendto(uint8_t addr, uint8_t *data, uint8_t n);
uint8_t rfm_recvfrom(uint8_t addr, uint8_t *buf, uint8_t n);
#endif /* RFM69_H */
|