[LoRaWAN] Workaround unused variable warning for unimplemented fields
This commit is contained in:
parent
4b80080a37
commit
9279b8ab6d
1 changed files with 5 additions and 0 deletions
|
@ -1226,8 +1226,11 @@ size_t LoRaWANNode::execMacCommand(LoRaWANMacCommand_t* cmd) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO implement repeated uplinks with nbTrans
|
// TODO implement repeated uplinks with nbTrans
|
||||||
|
(void)nbTrans;
|
||||||
// TODO implement channel mask
|
// TODO implement channel mask
|
||||||
uint8_t chMaskAck = 0;
|
uint8_t chMaskAck = 0;
|
||||||
|
(void)chMask;
|
||||||
|
(void)chMaskCntl;
|
||||||
|
|
||||||
// send the reply
|
// send the reply
|
||||||
cmd->len = 1;
|
cmd->len = 1;
|
||||||
|
@ -1264,9 +1267,11 @@ size_t LoRaWANNode::execMacCommand(LoRaWANMacCommand_t* cmd) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO process the RX2 data rate
|
// TODO process the RX2 data rate
|
||||||
|
(void)rx2DataRate;
|
||||||
uint8_t rx2Ack = 0;
|
uint8_t rx2Ack = 0;
|
||||||
|
|
||||||
// TODO process the data rate offset
|
// TODO process the data rate offset
|
||||||
|
(void)rx1DrOffset;
|
||||||
uint8_t rx1OffsAck = 0;
|
uint8_t rx1OffsAck = 0;
|
||||||
|
|
||||||
// send the reply
|
// send the reply
|
||||||
|
|
Loading…
Add table
Reference in a new issue