Solved
expected declaration specifiers or '...' before '....'
Hi!
I'm working with STM32CubeIDE and I want to send data via UART using the code below.
char *msg = "Hello\n";
HAL_UART_Transmit(&huart6, (uint8_t *) msg, strlen(msg), 100);
But I get an error like this:
What can I do about this issue?
