cancel
Showing results for 
Search instead for 
Did you mean: 

No source available for <signal handler called>() at 0xfffffffe

Kendall7
Associate II

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.

0 REPLIES 0