Skip to content

Commit

Permalink
Revert "Correct status codes"
Browse files Browse the repository at this point in the history
This reverts commit 496b07a.
  • Loading branch information
cujomalainey committed Sep 2, 2017
1 parent 496b07a commit 5ccdbc7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/TxCounter/TxCounter.ino
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ void parseMessage() {
{
uint8_t msgId = ant.getResponse().getMsgId();
switch (msgId) {
case STATUS_CHANNEL_EVENT:
case CHANNEL_EVENT:
{
ChannelEventResponse cer = ChannelEventResponse();
ant.getResponse().getChannelEventResponseMsg(cer);
Expand All @@ -104,7 +104,7 @@ void parseMessage() {
break;
}

case STATUS_START_UP_MESSAGE:
case START_UP_MESSAGE:
{
StartUpMessage sum = StartUpMessage();
ant.getResponse().getStartUpMsg(sum);
Expand Down Expand Up @@ -154,4 +154,4 @@ void parseEventMessage(uint8_t code)
Serial.println(code);
break;
}
}
}

0 comments on commit 5ccdbc7

Please sign in to comment.