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.
CAPL のすべての CAN メッセージのイベントに使用したいと思います。つまり、送信されるすべての CAN メッセージに対して同じイベントが発生するということです。「オンメッセージ」という構造でそれを行うことは可能ですか?
アスタリスクを使用するだけです:
/* event handler for all received messages */ on message * { output(this); }
また
/* event handler for all messages received on CAN1 */ on message CAN1.* { // ... }