I'm trying to send an array of characters in C, byte by byte to an output for a microcontroller. I'm using the following code:
int main() {
...
LogOutput("Hello World!");
}
void LogOutput(char *msg) {
int i;
for (i = 0; i < sizeof(msg); i++) {
USART0_TX(msg[i]); // transmit byte
}
}
However, this only sends the first two letters "He" --- does anybody know what I'm doing wrong?