summaryrefslogtreecommitdiffstats
path: root/main.c
blob: e1046ddf3a36efee3df9ee0611f79d9532544c1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdint.h>

#include "nrfm.h"
#include "uart.h"

int main(void)
{
	uint8_t rxaddr[] = { 82, 178, 194 };  /* 194.178.82 */

	uart_init();
	radio_init(rxaddr);
	radio_print_config();

	return 0;
}