区分任务和中断

发布于 2024-11-02 08:37:24 字数 104 浏览 1 评论 0原文

我的代码中有一点需要检查程序是否来自中断或任务。我正在使用 SMX。任何使用过SMX的人都可以回答他的问题。我没有从文档中获得足够的信息。所以,基本上我想要一些变量/参数来区分 ISR 和任务。

I have a point in my code where I need to check if program came here from an interrupt or a task. I am using SMX. Anyone used SMX can answer his question. I didn't get enough info from docs. So, basically I want some variable/parameter in order to distinguish between an ISR and a task.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十二 2024-11-09 08:37:24

当然,代码路径是唯一的。我不了解 SMX,但它肯定不会覆盖通常的机制,即由中断调用的函数具有特殊处理来建立堆栈帧、保留寄存器,并且可能建立到模块变量的静态链接。在这种情况下,检查 ISR 与另一条路由的明显方法是 ISR 在入口处设置一个标志,并在退出时清除它。

Surely the code path is unique. I don't know about SMX, but surely it doesn't override the usual mechanism whereby a function called by an interrupt has special handling to establish the stack frame, preserve registers, and maybe establish a static link to the module variables. In such cases, the obvious means to check ISR vs. another route is for the ISR to set a flag at entry and clear it when it exits.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文