Merge pull request #133 from mcspr/relative-include
Use relative includes
This commit is contained in:
commit
7008d57a60
|
|
@ -23,8 +23,9 @@
|
||||||
// Please maintain this license information along with authorship
|
// Please maintain this license information along with authorship
|
||||||
// and copyright notices in any redistribution of this code
|
// and copyright notices in any redistribution of this code
|
||||||
// **********************************************************************************
|
// **********************************************************************************
|
||||||
#include <RFM69.h>
|
#include "RFM69.h"
|
||||||
#include <RFM69registers.h>
|
#include "RFM69registers.h"
|
||||||
|
|
||||||
#include <SPI.h>
|
#include <SPI.h>
|
||||||
|
|
||||||
uint8_t RFM69::DATA[RF69_MAX_DATA_LEN+1];
|
uint8_t RFM69::DATA[RF69_MAX_DATA_LEN+1];
|
||||||
|
|
|
||||||
|
|
@ -26,9 +26,10 @@
|
||||||
// Please maintain this license information along with authorship
|
// Please maintain this license information along with authorship
|
||||||
// and copyright notices in any redistribution of this code
|
// and copyright notices in any redistribution of this code
|
||||||
// **********************************************************************************
|
// **********************************************************************************
|
||||||
#include <RFM69_ATC.h>
|
#include "RFM69_ATC.h"
|
||||||
#include <RFM69.h> // include the RFM69 library files as well
|
#include "RFM69.h" // include the RFM69 library files as well
|
||||||
#include <RFM69registers.h>
|
#include "RFM69registers.h"
|
||||||
|
|
||||||
#include <SPI.h>
|
#include <SPI.h>
|
||||||
|
|
||||||
volatile uint8_t RFM69_ATC::ACK_RSSI_REQUESTED; // new type of flag on ACK_REQUEST
|
volatile uint8_t RFM69_ATC::ACK_RSSI_REQUESTED; // new type of flag on ACK_REQUEST
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@
|
||||||
// **********************************************************************************
|
// **********************************************************************************
|
||||||
#ifndef RFM69_ATC_h
|
#ifndef RFM69_ATC_h
|
||||||
#define RFM69_ATC_h
|
#define RFM69_ATC_h
|
||||||
#include <RFM69.h>
|
#include "RFM69.h"
|
||||||
|
|
||||||
#define RFM69_CTL_RESERVE1 0x20
|
#define RFM69_CTL_RESERVE1 0x20
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,8 +30,8 @@
|
||||||
// Please maintain this license information along with authorship
|
// Please maintain this license information along with authorship
|
||||||
// and copyright notices in any redistribution of this code
|
// and copyright notices in any redistribution of this code
|
||||||
// **********************************************************************************
|
// **********************************************************************************
|
||||||
#include <RFM69_OTA.h>
|
#include "RFM69_OTA.h"
|
||||||
#include <RFM69registers.h>
|
#include "RFM69registers.h"
|
||||||
|
|
||||||
#ifdef __AVR__
|
#ifdef __AVR__
|
||||||
#include <avr/wdt.h>
|
#include <avr/wdt.h>
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
#ifndef RFM69_OTA_H
|
#ifndef RFM69_OTA_H
|
||||||
#define RFM69_OTA_H
|
#define RFM69_OTA_H
|
||||||
|
|
||||||
#include <RFM69.h>
|
#include "RFM69.h"
|
||||||
#include <SPIFlash.h>
|
#include <SPIFlash.h>
|
||||||
|
|
||||||
#if defined(MOTEINO_M0)
|
#if defined(MOTEINO_M0)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue