Skip to main content
Associate II
April 2, 2024
Question

No source available for () at 0xfffffffe

  • April 2, 2024
  • 0 replies
  • 1601 views

Hi,

I am not able to run my FreeRtos in Non secure region when trust zone is enabled.

When I did the debugging it's going to the infinite loop ,getting message as "No source available for <signal handler called>() at 0xfffffffe"

Kendall7_0-1712057006924.pngKendall7_1-1712057026530.pngKendall7_2-1712057046381.pngKendall7_3-1712057071055.png

Kendall7_4-1712057109214.png

The above are the configuration setting I have enabled.

Kendall7_5-1712057153273.png

Kendall7_6-1712057186244.png

I am getting the above message when I did the debugging.

 */
void MX_FREERTOS_Init(void) {

 /* creation of defaultTask */
 defaultTaskHandle = osThreadNew(StartDefaultTask, NULL, &defaultTask_attributes);
}

void StartDefaultTask(void *argument)
{
 /* USER CODE BEGIN defaultTask */
 /* Infinite loop */
 for(;;)
 {
	 HAL_GPIO_TogglePin(LED_GPIO_Port,LED_Pin);
	 osDelay(1);
 }
 /* USER CODE END defaultTask */
}

I am doing simple LED_toggle in FreeRtos task in Non secure region.

This topic has been closed for replies.