Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 autosar 和 davinci 工具的新手。我创建了一个 1ms 的 OsCounter 对象。然后将此计数器作为两个名为 al_10、al_20 的 OsAlarm 对象的参考。在警报到期时,它被配置为生成名为 ev_10、ev_20 的事件。
如何配置或在哪里配置这两个事件分别在 10ms 和 20ms 触发?
您有 2 个解决方案
创建任务并手动实施。uint32 b; TASK(a) { getevent(b) clearevent(b) if(b&mask1) do x if(b&mask2) do y }
使用 RTE