summaryrefslogtreecommitdiffstats
path: root/nrfm.h
blob: ade5205ea62616bf93cb5c56d7888bed969411b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef NRFM_H
#define NRFM_H

#include <stdint.h>

#define ADDRLEN     5

void radio_init(const uint8_t rxaddr[ADDRLEN]);
void radio_print_config(void);
void radio_sendto(const uint8_t addr[ADDRLEN], const void *msg, uint8_t n);

#endif /* NRFM_H */