Skip to content

Commit

Permalink
fix(main):calling wrong function
Browse files Browse the repository at this point in the history
- change it from UART_PutString() to UART_PutChar()
  • Loading branch information
abdullahbagyapan committed Apr 19, 2024
1 parent f6a1da0 commit 996657c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ int main() {

uint8_t ui8TemperatureCelsius = TEMPERATURE_Read();

UART_PutString(ui8TemperatureCelsius);
UART_PutChar(ui8TemperatureCelsius);
UART_PutChar('\n');

sleep_ms(1000);
Expand Down

0 comments on commit 996657c

Please sign in to comment.