CUBE IDE No source available for "() at 0xfffffffe" Errors
I was making a project with CUBE IDE and compiling it on the board, and I got this error while compiling the project I was doing on the new board.
No source is available for "Call Signal Handler"() in 0xfffffffe.
I'm sure they're using the same CPU
I can't compile it because it's STM32 ST-LINK
I don't think there will be any problems with the code or MX settings because if I modify the code on the existing board, the project will also change well.
Even if I create a new project and add the above code, I get the same error, so I can't compile it
I want to solve this phenomenon, how do I solve it?
int main(void)
{
/* USER CODE BEGIN 1 */
/* USER CODE END 1 */
/* MPU Configuration--------------------------------------------------------*/
MPU_Config();
/* MCU Configuration--------------------------------------------------------*/
/* Reset of all peripherals, Initializes the Flash interface and the Systick. */
HAL_Init();
/* USER CODE BEGIN Init */
/* USER CODE END Init */
/* Configure the system clock */
SystemClock_Config();
/* USER CODE BEGIN SysInit */
/* USER CODE END SysInit */
/* Initialize all configured peripherals */
MX_GPIO_Init();
/* USER CODE BEGIN 2 */
HAL_GPIO_WritePin(GPIOK, GPIO_PIN_2, GPIO_PIN_SET);
/* USER CODE END 2 */
/* Infinite loop */
/* USER CODE BEGIN WHILE */
while (1)
{
/* USER CODE END WHILE */
/* USER CODE BEGIN 3 */
}
/* USER CODE END 3 */
}
The same error occurs in the above simple code.
How can I fix this problem?
stm32 : STM32H743XIH6
==========================================
Error image
=========================================
Current state
