1
0
mirror of https://github.com/sandeepmistry/arduino-LoRa.git synced 2025-04-19 13:02:14 +03:00

Add license header to source files

This commit is contained in:
Sandeep Mistry 2017-09-10 20:43:17 -04:00
parent 7f1ca66449
commit 24b1533963
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,6 @@
// Copyright (c) Sandeep Mistry. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#include <LoRa.h>
// registers
@ -154,6 +157,9 @@ int LoRaClass::parsePacket(int size)
int packetLength = 0;
int irqFlags = readRegister(REG_IRQ_FLAGS);
Serial.print("irqFlags ");
Serial.println(irqFlags, HEX);
if (size > 0) {
implicitHeaderMode();

View File

@ -1,3 +1,6 @@
// Copyright (c) Sandeep Mistry. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#ifndef LORA_H
#define LORA_H