User Activity

I'm using STM32F103C8 and I have Bootloader at the start of flash 0x08000000 and Application start at 0x08008000. On powerup Bootloader start to perform basic functions and then jumps to the main application. Everything works fine but what about Boot...
What is the difference between USART1_IRQHandler and HAL_UART_IRQHandlervoid USART1_IRQHandler(void) { /* USER CODE BEGIN USART1_IRQn 0 */ /* USER CODE END USART1_IRQn 0 */ HAL_UART_IRQHandler(&huart1); -----> does inter...