Good afternoon,I am testing my UART and using a vector to store float numbers as shown below: raptor::std::vector<float> numbers; numbers.append(3.14f); numbers.append(2.21f); numbers.append(1.01f); numbers.append(8.15f); numbers.append(0.05f);H...
Good morning, I am trying to print a string on STM32F401RBT6 using vs code and Cmake, but I keep getting an issue, when I use '\n' the UART doesn't print nothing beyond the '\n', can somebody help me with this issue, please? printf("Hello\n World");