Skip to content
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

Merged
merged 1 commit into from
May 8, 2024

Conversation

wdfk-prog
Copy link
Contributor

@wdfk-prog wdfk-prog commented Apr 29, 2024

拉取/合并请求描述:(PR description)

[

为什么提交这份PR (why to submit this PR)

你的解决方案是什么 (what is your solution)

请提供验证的bsp和config (provide the config and bsp)

  • BSP:
  • .config:
  • action:

]

当前拉取/合并请求的状态 Intent for your PR

必须选择一项 Choose one (Mandatory):

  • 本拉取/合并请求是一个草稿版本 This PR is for a code-review and is intended to get feedback
  • 本拉取/合并请求是一个成熟版本 This PR is mature, and ready to be integrated into the repo

代码质量 Code Quality:

我在这个拉取/合并请求中已经考虑了 As part of this pull request, I've considered the following:

  • 已经仔细查看过代码改动的对比 Already check the difference between PR and old code
  • 代码风格正确,包括缩进空格,命名及其他风格 Style guide is adhered to, including spacing, naming and other styles
  • 没有垃圾代码,代码尽量精简,不包含#if 0代码,不包含已经被注释了的代码 All redundant code is removed and cleaned up
  • 所有变更均有原因及合理的,并且不会影响到其他软件组件代码或BSP All modifications are justified and not affect other components or BSP
  • 对难懂代码均提供对应的注释 I've commented appropriately where code is tricky
  • 代码是高质量的 Code in this PR is of high quality
  • 已经使用formatting 等源码格式化工具确保格式符合RT-Thread代码规范 This PR complies with RT-Thread code specification

@wdfk-prog wdfk-prog changed the title [timer] With macro compilation, some code is no longer executed when RT_TIMER_SKIP_LIST_LEVEL= 1 [timer] The rt_timer_check and _soft_timer_check functions are merged Apr 30, 2024
@wdfk-prog
Copy link
Contributor Author

  • 第二次推送解决如下问题

#8883

@wdfk-prog
Copy link
Contributor Author

wdfk-prog commented Apr 30, 2024

自己工程编译正常,测试正常

https://github.com/wdfk-prog/ART-PI

image

image

  • 测试正常

@wdfk-prog
Copy link
Contributor Author

current_tick = rt_tick_get(); 在软件定时器检测和硬件定时器检测中的调用顺序不同;按我理解没有差别,放入前面运行更为合适

    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();

@wdfk-prog
Copy link
Contributor Author

  • 在硬件定时器检测中的该段代码,我认为可以放入外部判断既可;但是没有实际环境测试;这个地方需要检测一下是否合理
#ifdef RT_USING_SMP
    /* Running on core 0 only */
    if (rt_hw_cpu_id() != 0)
    {
        rt_spin_unlock_irqrestore(&_htimer_lock, level);
        return;
    }
#endif

@wdfk-prog wdfk-prog changed the title [timer] The rt_timer_check and _soft_timer_check functions are merged [timer] Merge and optimize some code May 1, 2024
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)
Copy link
Member

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编译,下面代码是否会自动移除。如果都是自动的,那么建议不增加条件宏判断。代码中条件宏太多也不太好

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • KEIL AC6 -O3编译后,RT_TIMER_SKIP_LIST_LEVEL = 1 debug调试下是无法在这两处断点的;
    image
  • KEIL AC6 -O3编译后,RT_TIMER_SKIP_LIST_LEVEL = 3 debug调试下是可以在这两处断点的;
    image
  • 是会自动移除;那我把条件判断去除;

@wdfk-prog wdfk-prog changed the title [timer] Merge and optimize some code [timer] The rt_timer_check and _soft_timer_check functions are merged May 3, 2024
@@ -884,7 +824,11 @@ static void _timer_thread_entry(void *parameter)
}

/* check software timer */
_soft_timer_check();
LOG_D("software timer check enter");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这两个LOG_D要不删了吧 感觉放在这里debug的意义不是很大 确认可以工作之后就可以删除啦?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

应该和调试相关,可以留着方便调试

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这几个log是嵌套在一起的 而且会刷屏,应该是历史遗留问题 #8915

@BernardXiong BernardXiong merged commit 7879986 into RT-Thread:master May 8, 2024
44 checks passed
@wdfk-prog wdfk-prog deleted the timer branch May 28, 2024 02:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[kernel timer]rt_timer_check 和 _soft_timer_check 函数是否可以抽出为同一份?
4 participants