Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kanndil committed Jan 20, 2025
1 parent 43d69be commit ff950c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fw/EF_UART_example.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ int main() {

// Receive a message
char buffer[100];
status = UART_Receive(UART0, buffer, sizeof(buffer));
status = EF_UART_readCharArr(UART0, buffer, sizeof(buffer));
if (status == EF_DRIVER_OK) {
// Print received message
printf("Received: %s\n", buffer);
Expand Down

0 comments on commit ff950c3

Please sign in to comment.