打印

stm32cubemx中freertosV10.0.1与cmsis_v2配合是否有问题

[复制链接]
1830|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
xsq21dz|  楼主 | 2021-6-3 12:02 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
在cmsis_os2.c中有:#if defined(SysTick)
/* FreeRTOS tick timer interrupt handler prototype */
extern void xPortSysTickHandler (void);

/*
  SysTick handler implementation that also clears overflow flag.
*/
void SysTick_Handler (void) {
  /* Clear overflow flag */
  SysTick->CTRL;

  /* Call tick handler */
  xPortSysTickHandler();
}
#endif /* SysTick */

在FreeRTOSConfig.h有#define xPortSysTickHandler SysTick_Handler
在port.c
void xPortSysTickHandler( void )
{
        /* The SysTick runs at the lowest interrupt priority, so when this interrupt
        executes all interrupts must be unmasked.  There is therefore no need to
        save and then restore the interrupt mask value as its value is already
        known. */
        portDISABLE_INTERRUPTS();
        {
                /* Increment the RTOS tick. */
                if( xTaskIncrementTick() != pdFALSE )
                {
                        /* A context switch is required.  Context switching is performed in
                        the PendSV interrupt.  Pend the PendSV interrupt. */
                        portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT;
                }
        }
        portENABLE_INTERRUPTS();
}

使用特权

评论回复

相关帖子

发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

4

主题

8

帖子

0

粉丝