のためにこれをやった受信MSGを指定する方法がわからないイベントを受信し、メッセージの種類にそれを受け取った後にのみ実行されますリスンしており、そのタイプはアプリケーション構成ファイルで指定されています。
だから、あなたの設定ファイルであなたが持っているでしょう:
enum
{
HELLOMSG = 1,
VIOSINMSG = 2,
} ;
を、あなたのアプリケーションのファイルにあなたが持っているでしょう:あなたのヘッダーで
components ApplicationNameP as App, ActiveMessageC;
components new AMSenderC(HELLOMSG) as HELLOMsgSender;
components new AMSenderC(VIOSINMSG) as VIOSINMsgSender;
App.RadioSendHello -> HELLOMsgSender;
App.RadioReceiveHello -> ActiveMessageC.Receive[HELLOMSG];
App.RadioSendViosin -> VIOSINMsgSender;
App.RadioReceiveViosin -> ActiveMessageC.Receive[VIOSINMSG];
はあなたが持っているでしょう
uses interface AMSend as RadioSendHello;
uses interface Receive as RadioReceiveHello;
uses interface AMSend as RadioSendViosin;
uses interface Receive as RadioReceiveViosin;
関連するイベントハンドラを使用して、入ってくるパケットを処理することができます。