[LoRaWAN] Add cast for DevAddr print
This commit is contained in:
parent
c77670c076
commit
5391d5d383
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ void setup() {
|
||||||
|
|
||||||
// Print the DevAddr
|
// Print the DevAddr
|
||||||
Serial.print("[LoRaWAN] DevAddr: ");
|
Serial.print("[LoRaWAN] DevAddr: ");
|
||||||
Serial.println(node.getDevAddr(), HEX);
|
Serial.println((unsigned long)node.getDevAddr(), HEX);
|
||||||
|
|
||||||
// Disable the ADR algorithm (on by default which is preferable)
|
// Disable the ADR algorithm (on by default which is preferable)
|
||||||
node.setADR(false);
|
node.setADR(false);
|
||||||
|
|
Loading…
Add table
Reference in a new issue