no functional change
[digitaldcpower] / uart.c
diff --git a/uart.c b/uart.c
index eb7c4e1..5d38a1e 100644 (file)
--- a/uart.c
+++ b/uart.c
@@ -7,6 +7,7 @@
 #include <avr/interrupt.h>
 #include <string.h>
 #include <avr/io.h>
+#include <avr/pgmspace.h>
 #include "uart.h"
 #define F_CPU 8000000UL  // 8 MHz
 
@@ -58,7 +59,7 @@ void uart_sendstr(char *s)
         }
 }
 
-void uart_sendstr_p(const prog_char *progmem_s)
+void uart_sendstr_p(const char *progmem_s )
 // print string from program memory on rs232 
 {
         char c;