[STM32] After FreeRTOS is turned on, it will no longer enter the while(1) of the main function

After turning on freertos, I want to realize the flipping of the led in the while(1) of the main function, but found that it cannot be realized.

int main(void)
{
  /* USER CODE BEGIN 1 */

  /* USER CODE END 1 */

  /* 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();
  MX_USART1_UART_Init();
  /* USER CODE BEGIN 2 */

  /* USER CODE END 2 */

  /* Call init function for freertos objects (in freertos.c) */
  MX_FREERTOS_Init();

  /* Start scheduler */
  osKernelStart();

  /* We should never get here as control is now taken by the scheduler */
  /* Infinite loop */
  /* USER CODE BEGIN WHILE */
  while (1)
  {
		HAL_GPIO_TogglePin(GPIOF,GPIO_PIN_9);
		HAL_Delay(1000);
    /* USER CODE END WHILE */

    /* USER CODE BEGIN 3 */
  }
  /* USER CODE END 3 */
}

Analyze the reasons:

osKernelStart();

  /* We should never get here as control is now taken by the scheduler */

osKernelStart();

There is a comment after the statement:

  /* We should never get here as control is now taken by the scheduler */

We'll never get here because control is now taken by the scheduler

Guess you like

Origin blog.csdn.net/weixin_45015121/article/details/132242037