Using the STM32F030RC, the program that originally ran at 0x800000 was moved to 0x8020000. After the move, SysTick_Handler() is no longer executed, causing HAL_Delay() to fail. Has anyone encountered this issue before?
I added that copy ISR table to SRAM and solve HAL_Delay() issue。 But new issue comes that some varible content is corrupted, below is my codemain(){HAL_Init();/* USER CODE BEGIN Init */ /* USER CODE END Init */ /* Configure the system clock */SystemC...