From 4fdb822e50136e44a5fea7d00d13c26db6020a70 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Fri, 9 Oct 2015 01:31:50 -0400 Subject: [PATCH] Fixed renamed transmitBytes and changed parameters After changing the transmitBytes function and renaming it, missed changing the function definition in the header file to match the new declaration. Signed-off-by: Collin J. Doering --- USART.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/USART.h b/USART.h index 855f2d9..6baba35 100644 --- a/USART.h +++ b/USART.h @@ -25,6 +25,6 @@ void initUSART(void); void transmitByte(uint8_t data); -void transmitBytes(uint8_t* data); +void transmitString(const char* data); uint8_t receiveByte(void);