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 <collin.doering@rekahsoft.ca>
This commit is contained in:
Collin J. Doering 2015-10-09 01:31:50 -04:00
parent 854876217a
commit 4fdb822e50
1 changed files with 1 additions and 1 deletions

View File

@ -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);