mirror of
https://github.com/timmbogner/Farm-Data-Relay-System
synced 2024-11-10 07:10:42 +00:00
Bugfix: Updated fdrs_sensor.h of Universal_Sensor_beta
A "LORA" was missing in the definition for FDRS_... Lora settings which led to a compile error. Fixed.
This commit is contained in:
parent
d952081a22
commit
ef573a8f45
@ -10,7 +10,7 @@
|
||||
#define __FDRS_SENSOR__H__
|
||||
|
||||
#include "fdrs_types.h"
|
||||
#include "fdrs_datatypes.h"
|
||||
#include <fdrs_datatypes.h>
|
||||
|
||||
//1 to enable debugging prints. 0 disables the debugging prints
|
||||
#define ENABLE_DEBUG 1
|
||||
@ -33,12 +33,12 @@
|
||||
#endif
|
||||
|
||||
#ifdef USE_LORA
|
||||
#include "LoRa.h"
|
||||
#include <LoRa.h>
|
||||
#endif
|
||||
|
||||
#ifdef FDRS_GLOBALS
|
||||
#define FDRS_BAND GLOBAL_BAND
|
||||
#define FDRS_SF GLOBAL_SF
|
||||
#define FDRS_BAND GLOBAL_LORA_BAND
|
||||
#define FDRS_SF GLOBAL_LORA_SF
|
||||
#else
|
||||
#define FDRS_BAND LORA_BAND
|
||||
#define FDRS_SF LORA_SF
|
||||
|
Loading…
Reference in New Issue
Block a user