summaryrefslogtreecommitdiffstats
path: root/uart.h
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2025-03-08 15:26:31 +0800
committerSadeep Madurange <sadeep@asciimx.com>2025-03-08 15:26:31 +0800
commita807f4849155262efb243c574dd5d77f35755ebc (patch)
tree3813576fdcad1b78191edd498d9c331c9a52df62 /uart.h
parentd30783770f2230ffa3ce9b3b1d652d4dda28e166 (diff)
downloadavr-nrf24l01-driver-a807f4849155262efb243c574dd5d77f35755ebc.tar.gz
wip: spi interface.
Diffstat (limited to 'uart.h')
-rw-r--r--uart.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/uart.h b/uart.h
index 81db74b..854cd14 100644
--- a/uart.h
+++ b/uart.h
@@ -2,7 +2,8 @@
#define UART_H
void uart_init(void);
-void uart_write(char c);
+void uart_write_char(char c);
+void uart_write(const char *s);
void uart_write_line(const char *s);
#endif /* UART_H */