2018-03-18 19:45:17 +01:00
|
|
|
// The mother of all embedded development...
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
|
|
// std::set for unified array functions
|
|
|
|
#include <set>
|
2018-04-24 22:37:20 +02:00
|
|
|
#include <array>
|
|
|
|
#include <algorithm>
|
2018-03-18 19:45:17 +01:00
|
|
|
|
2018-04-24 22:37:20 +02:00
|
|
|
// OLED Display
|
2018-04-16 20:56:29 +02:00
|
|
|
#ifdef HAS_DISPLAY
|
|
|
|
#include <U8x8lib.h>
|
|
|
|
#endif
|
2018-03-18 19:45:17 +01:00
|
|
|
|
|
|
|
// LMIC-Arduino LoRaWAN Stack
|
|
|
|
#include <lmic.h>
|
|
|
|
#include <hal/hal.h>
|
|
|
|
|
2018-04-03 17:47:11 +02:00
|
|
|
// LED controls
|
2018-04-02 01:36:51 +02:00
|
|
|
#ifdef HAS_RGB_LED
|
2018-04-03 17:47:11 +02:00
|
|
|
#include <SmartLeds.h>
|
2018-04-02 01:36:51 +02:00
|
|
|
#endif
|
2018-04-03 17:47:11 +02:00
|
|
|
|
2018-04-02 01:36:51 +02:00
|
|
|
#include "rgb_led.h"
|
|
|
|
#include "macsniff.h"
|
2018-04-19 15:17:23 +02:00
|
|
|
#include "main.h"
|
2018-04-02 01:36:51 +02:00
|
|
|
|
2018-03-21 17:34:11 +01:00
|
|
|
// Struct holding devices's runtime configuration
|
|
|
|
typedef struct {
|
|
|
|
int8_t lorasf; // 7-12, lora spreadfactor
|
|
|
|
int8_t txpower; // 2-15, lora tx power
|
|
|
|
int8_t adrmode; // 0=disabled, 1=enabled
|
|
|
|
int8_t screensaver; // 0=disabled, 1=enabled
|
|
|
|
int8_t screenon; // 0=disabled, 1=enabled
|
|
|
|
int8_t countermode; // 0=cyclic unconfirmed, 1=cumulative, 2=cyclic confirmed
|
|
|
|
int16_t rssilimit; // threshold for rssilimiter, negative value!
|
|
|
|
int8_t wifiscancycle; // wifi scan cycle [seconds/2]
|
|
|
|
int8_t wifichancycle; // wifi channel switch cycle [seconds/100]
|
2018-04-02 21:26:22 +02:00
|
|
|
int8_t blescantime; // BLE scan cycle duration [seconds]
|
2018-03-21 17:34:11 +01:00
|
|
|
int8_t blescan; // 0=disabled, 1=enabled
|
2018-03-24 13:38:43 +01:00
|
|
|
int8_t wifiant; // 0=internal, 1=external (for LoPy/LoPy4)
|
2018-04-15 12:12:06 +02:00
|
|
|
int8_t vendorfilter; // 0=disabled, 1=enabled
|
2018-04-02 23:27:38 +02:00
|
|
|
int8_t rgblum; // RGB Led luminosity (0..100%)
|
2018-03-21 17:34:11 +01:00
|
|
|
char version[10]; // Firmware version
|
|
|
|
} configData_t;
|
2018-03-18 19:45:17 +01:00
|
|
|
|
2018-03-21 17:34:11 +01:00
|
|
|
extern configData_t cfg;
|
2018-03-18 19:45:17 +01:00
|
|
|
extern uint8_t mydata[];
|
2018-04-17 19:20:54 +02:00
|
|
|
extern uint64_t uptimecounter;
|
2018-04-26 18:04:46 +02:00
|
|
|
extern unsigned long currentMillis ;
|
2018-03-21 17:34:11 +01:00
|
|
|
extern osjob_t sendjob;
|
2018-04-24 22:29:12 +02:00
|
|
|
extern char display_lora[], display_lmic[], display_mem[];
|
2018-04-04 12:39:40 +02:00
|
|
|
extern int countermode, screensaver, adrmode, lorasf, txpower, rlim;
|
2018-04-19 10:55:59 +02:00
|
|
|
extern uint16_t macs_total, macs_wifi, macs_ble; // MAC counters
|
2018-03-18 19:45:17 +01:00
|
|
|
extern bool joinstate;
|
2018-04-01 20:56:18 +02:00
|
|
|
extern std::set<uint16_t> macs;
|
2018-04-24 22:29:12 +02:00
|
|
|
extern const uint32_t heapmem;
|
2018-03-18 19:45:17 +01:00
|
|
|
|
2018-03-21 17:34:11 +01:00
|
|
|
#ifdef HAS_DISPLAY
|
|
|
|
extern HAS_DISPLAY u8x8;
|
|
|
|
#endif
|