2023-08-13 05:14 AM
if i use
sprintf(msg, "%s %.0f%%", NN_OUTPUT_CLASS_LIST[App_Context_Ptr->ranking[i]], *((float*)(App_Context_Ptr->Ai_ContextPtr->nn_output_buffer)+i) * 100);
HAL_UART_Transmit(&huart8,(uint8_t*)msg,10,1000);
To transmit “Beer 50 %” to arduino But the arduino no receive why?
2023-08-13 06:06 AM
You need to flush the USART pipe to get the string sent,,e.g. by using a CRLF.
Regards /Peter
2023-08-14 04:39 AM