summaryrefslogtreecommitdiffstats
path: root/nrfm.h
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2025-03-16 22:42:28 +0800
committerSadeep Madurange <sadeep@asciimx.com>2025-03-16 22:42:28 +0800
commitbf6ef289ec177e717fc71af866d7a085f5e34b6b (patch)
tree64e8af831b13c352ed25af631964acccbeb97b7f /nrfm.h
parente4d82ccac81cad4afdaa79de90a1bf4f3591c70c (diff)
downloadavr-nrf24l01-driver-bf6ef289ec177e717fc71af866d7a085f5e34b6b.tar.gz
Refactor radio code to separate header.
Diffstat (limited to 'nrfm.h')
-rw-r--r--nrfm.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/nrfm.h b/nrfm.h
new file mode 100644
index 0000000..64e227a
--- /dev/null
+++ b/nrfm.h
@@ -0,0 +1,9 @@
+#ifndef RADIO_H
+#define RADIO_H
+
+#include <stdint.h>
+
+void radio_init(uint8_t rxaddr[3]);
+void radio_print_config(void);
+
+#endif