File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ void setup()
5151
5252 ac = AssignChannel ();
5353 ac.setChannel (0 );
54- ac.setChannelType (CHANNEL_TYPE_BIDIRECTIONAL_RECEIVE);
54+ ac.setChannelType (CHANNEL_TYPE_BIDIRECTIONAL_RECEIVE); // can't wildcard this
5555 ac.setChannelNetwork (0 );
5656 ant.send (ac);
5757 parseMessage ();
@@ -66,13 +66,13 @@ void setup()
6666
6767 cp = ChannelPeriod ();
6868 cp.setChannel (0 );
69- cp.setPeriod (1234 );
69+ cp.setPeriod (1234 ); // can't wildcard this
7070 ant.send (cp);
7171 parseMessage ();
7272
7373 crf = ChannelRfFrequency ();
7474 crf.setChannel (0 );
75- crf.setRfFrequency (0 );
75+ crf.setRfFrequency (0 ); // can't wildcard this
7676 ant.send (crf);
7777 parseMessage ();
7878
Original file line number Diff line number Diff line change @@ -58,13 +58,13 @@ void setup()
5858
5959 cp = ChannelPeriod ();
6060 cp.setChannel (0 );
61- cp.setPeriod (1234 );
61+ cp.setPeriod (1234 ); // can't wildcard this
6262 ant.send (cp);
6363 parseMessage ();
6464
6565 crf = ChannelRfFrequency ();
6666 crf.setChannel (0 );
67- crf.setRfFrequency (0 );
67+ crf.setRfFrequency (0 ); // can't wildcard this
6868 ant.send (crf);
6969 parseMessage ();
7070
You can’t perform that action at this time.
0 commit comments