Hi Everyone,
I am using STM32F407DISCO board and made a simple program which transmit some values. The program is as follows
#include "stm32f4xx_hal.h"
#include "main.h"
UART_HandleTypeDef USART2Config;
void GPIO_Init(void);
void UART2_Init(void...
The issue is resolved after I added the following functionvoid SysTick_Handler(void){
HAL_IncTick();
HAL_SYSTICK_IRQHandler();
}Thanks everyone for your support
@waclawek.jan No there is no error or warning while compilation@Andrew Neil No I didn't check the single-step nor I checked if any error is returning.How do I check if it is returning any error or not?