Unable to transmit continuous ADC data via UART to PuTTY
Hallo!
I am trying to calculate and display the temperature measurement of 2 NTC thermistor's using STM32F103RBT6. I have done the ADC conversion and hardware connections correct. I was able to get continuous values with a delay of 1 second before using input commands. Now, however the measurement and display of output in PuTTY is not continuous. I programmed the mcu to start temperature measurement when the input is '1' and stop it when input is '2'. But I have to press '1' each time to obtain a measurement , even though I used the same HAL_UART_Transmit(&huart2, (uint8_t*)buffer, strlen(buffer), HAL_MAX_DELAY) . Is it a problem in my code or can we not continously transmit data in this case?
