User Activity

I have tried everything to clear this error. Does anyone know what I am doing wrong and how to fix it? The error if pointing to the HAL_UART_Transmit_DMA call.uint8_t SPI_data[SPI_Buffer_Size] = {};HAL_UART_Transmit_DMA(RS485_1, SPI_data, strlen(SPI...
Here is my c++ code:void print_console(std::string msg){ const char *p = msg.c_str();  HAL_UART_Transmit_DMA(CONSOLE, p, strlen(msg));  while (console_tx_flag == 0); // Wait until the uart transmit is complete  console_tx_flag = 0;}Does anyone know ...
This is running on Linux and I created a test program with the same include and compiled it with g++ without issue.I think I need to tell CudeIDE where the standard libraries are located? If that is so, Where do I find them?Thanks!!
Kudos from