Skip to content

Commit 24b1533

Browse files
committed
Add license header to source files
1 parent 7f1ca66 commit 24b1533

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/LoRa.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
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+
14
#include <LoRa.h>
25

36
// registers
@@ -154,6 +157,9 @@ int LoRaClass::parsePacket(int size)
154157
int packetLength = 0;
155158
int irqFlags = readRegister(REG_IRQ_FLAGS);
156159

160+
Serial.print("irqFlags ");
161+
Serial.println(irqFlags, HEX);
162+
157163
if (size > 0) {
158164
implicitHeaderMode();
159165

src/LoRa.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
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+
14
#ifndef LORA_H
25
#define LORA_H
36

0 commit comments

Comments
 (0)