-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[timer] The rt_timer_check and _soft_timer_check functions are merged #8884
Conversation
|
自己工程编译正常,测试正常 https://github.com/wdfk-prog/ART-PI
|
while (!rt_list_isempty(&timer_list[RT_TIMER_SKIP_LIST_LEVEL - 1]))
{
t = rt_list_entry(timer_list[RT_TIMER_SKIP_LIST_LEVEL - 1].next,
struct rt_timer, row[RT_TIMER_SKIP_LIST_LEVEL - 1]);
/* re-get tick */
current_tick = rt_tick_get(); |
#ifdef RT_USING_SMP
/* Running on core 0 only */
if (rt_hw_cpu_id() != 0)
{
rt_spin_unlock_irqrestore(&_htimer_lock, level);
return;
}
#endif |
src/timer.c
Outdated
@@ -442,19 +442,22 @@ static rt_err_t _timer_start(rt_list_t *timer_list, rt_timer_t timer) | |||
break; | |||
} | |||
} | |||
#if (RT_TIMER_SKIP_LIST_LEVEL > 1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里,如果RT_TIMER_SKIP_LIST_LEVEL = 1
,下面应该也不执行的。也可以确认下,如果-O3
编译,下面代码是否会自动移除。如果都是自动的,那么建议不增加条件宏判断。代码中条件宏太多也不太好
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -884,7 +824,11 @@ static void _timer_thread_entry(void *parameter) | |||
} | |||
|
|||
/* check software timer */ | |||
_soft_timer_check(); | |||
LOG_D("software timer check enter"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这两个LOG_D要不删了吧 感觉放在这里debug的意义不是很大 确认可以工作之后就可以删除啦?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
应该和调试相关,可以留着方便调试
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这几个log是嵌套在一起的 而且会刷屏,应该是历史遗留问题 #8915
拉取/合并请求描述:(PR description)
[
为什么提交这份PR (why to submit this PR)
你的解决方案是什么 (what is your solution)
请提供验证的bsp和config (provide the config and bsp)
]
当前拉取/合并请求的状态 Intent for your PR
必须选择一项 Choose one (Mandatory):
代码质量 Code Quality:
我在这个拉取/合并请求中已经考虑了 As part of this pull request, I've considered the following:
#if 0
代码,不包含已经被注释了的代码 All redundant code is removed and cleaned up