2023-07-24 04:33 AM
Is there any way to transmit an array of integers without converting an array of integers into string?
For loop will take time. I want to transmit an array in one go.
2023-07-24 05:14 AM - edited 2023-07-24 05:16 AM
so just send your int array...
HAL_UART_Transmit(&huartY, (uint8_t *)array, sizeof(array), 5);