File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Copyright (c) Sandeep Mistry. All rights reserved.
2
+ // Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
+
1
4
#include < LoRa.h>
2
5
3
6
// registers
@@ -154,6 +157,9 @@ int LoRaClass::parsePacket(int size)
154
157
int packetLength = 0 ;
155
158
int irqFlags = readRegister (REG_IRQ_FLAGS);
156
159
160
+ Serial.print (" irqFlags " );
161
+ Serial.println (irqFlags, HEX);
162
+
157
163
if (size > 0 ) {
158
164
implicitHeaderMode ();
159
165
Original file line number Diff line number Diff line change
1
+ // Copyright (c) Sandeep Mistry. All rights reserved.
2
+ // Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
+
1
4
#ifndef LORA_H
2
5
#define LORA_H
3
6
You can’t perform that action at this time.
0 commit comments