当前位置:   article > 正文

STM32CubeMX + freeRTOS线程操作(二)_oskernelsystick

oskernelsystick

接上 线程操作(一)

上一个例程中使用的是1个按键来进行线程的恢复和挂起,现在改用另一种形式来进行。 同样还是上面的那两个任务LED1_Thread、LED2_Thread;只不过在任务中使用定时的方式来进行线程挂起与切换。

在这里使用了一个freeRTOS中的一个API函数uint32_t osKernelSysTick(void)用来获得内核Systick定时器的值。

  1. /**
  2. * @brief Get the value of the Kernel SysTick timer
  3. * @param None
  4. * @retval None
  5. * @note MUST REMAIN UNCHANGED: \b osKernelSysTick shall be consistent in every CMSIS-RTOS.
  6. */
  7. uint32_t osKernelSysTick(void)
  8. {
  9. if (inHandlerMode()) {
  10. return xTaskGetTickCountFromISR();
  11. }
  12. else {
  13. return xTaskGetTickCount();
  14. }
  15. }

1、LED1_Thread中代码的实现

在该线程中,首先获得内核Systick定时器的值再加上5000ms,计数值大于等于内核Systick定时器时LED1开始闪烁,否则将自身挂起。等待线程2将其恢复。

  1. * USER CODE BEGIN Header_LED_Thread1 */
  2. /**
  3. * @brief Function implementing the LED1 thread.
  4. * @param argument: Not used
  5. * @retval None
  6. */
  7. /* USER CODE END Header_LED_Thread1 */
  8. void LED_Thread1(void const * argument)
  9. {
  10. /* USER CODE BEGIN 5 */
  11. /* Infinite loop */
  12. static uint32_t timerCount = 0;
  13. for(;;)
  14. {
  15. timerCount = osKernelSysTick()+5000;
  16. /* Toggle LED1 every 200 ms for 5 s */
  17. while(timerCount >= osKernelSysTick()) {
  18. HAL_GPIO_TogglePin(GPIOF,GPIO_PIN_9);
  19. osDelay(200);
  20. }
  21. /* Turn off LED */
  22. HAL_GPIO_WritePin(GPIOF,GPIO_PIN_9,GPIO_PIN_SET);
  23. /* Suspend Thread 1 */
  24. osThreadSuspend(NULL);
  25. timerCount = osKernelSysTick()+5000;
  26. /* Toggle LED every 400 ms for 5 s */
  27. while (timerCount >= osKernelSysTick()){
  28. HAL_GPIO_TogglePin(GPIOF,GPIO_PIN_9);
  29. osDelay(400);
  30. }
  31. /* Resume Thread 2 */
  32. osThreadResume(LED2Handle);
  33. }
  34. /* USER CODE END 5 */
  35. }

2、LED2_Thread中代码的实现

  1. /* USER CODE BEGIN Header_LED2_Thread */
  2. /**
  3. * @brief Function implementing the LED2 thread.
  4. * @param argument: Not used
  5. * @retval None
  6. */
  7. /* USER CODE END Header_LED2_Thread */
  8. void LED2_Thread(void const * argument)
  9. {
  10. /* USER CODE BEGIN LED2_Thread */
  11. /* Infinite loop */
  12. for(;;)
  13. {
  14. static uint32_t timerCount = 0;
  15. timerCount = osKernelSysTick()+10000;
  16. /* Toggle LED1 every 200 ms for 5 s */
  17. while(timerCount >= osKernelSysTick()) {
  18. HAL_GPIO_TogglePin(GPIOF,GPIO_PIN_10);
  19. osDelay(500);
  20. }
  21. /* Turn off LED */
  22. HAL_GPIO_WritePin(GPIOF,GPIO_PIN_10,GPIO_PIN_SET);
  23. /* Resume Thread 1 */
  24. osThreadResume(LED1Handle);
  25. /* Suspend Thread 2 */
  26. osThreadSuspend(NULL);
  27. }
  28. /* USER CODE END LED2_Thread */
  29. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/397949
推荐阅读
相关标签
  

闽ICP备14008679号