User Activity

Hi,I'm using the NUCLEO-64 STM32L476RG and I am aware that it is very simple to start the ADC to get a reading in an analog port. One should however wait for the conversion to complete and the HAL library has the HAL_ADC_PollForConversion() function ...
I have built a code using the STM32CubeIDE with only 1 taskvoid StartMyTask(void *argument){  /* USER CODE BEGIN 5 */  /* Infinite loop */   char c = 'A';  for(;;)  {   ITM_SendChar(c); //sends the char c to the PC debugging termi...