Arduino IDE compat fix

This commit is contained in:
Mark Qvist 2018-12-01 19:31:51 +01:00
parent 6b048417a7
commit f8a2cb8a05
3 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
// Modifications and additions copyright 2018 by Mark Qvist
// Obviously still under the MIT license.
#include <LoRa.h>
#include "LoRa.h"
// Registers
#define REG_FIFO 0x00

View File

@ -1,5 +1,6 @@
#include <Arduino.h>
#include <SPI.h>
#include <LoRa.h>
#include "LoRa.h"
#include "Config.h"
#include "Framing.h"
#include "Utilities.cpp"

View File

@ -1,6 +1,5 @@
#include <Arduino.h>
#include <EEPROM.h>
#include <LoRa.h>
#include "LoRa.h"
#include "ROM.h"
#include "Config.h"
#include "Framing.h"