ESP32-PaxCounter/src/globals.h

79 lines
2.3 KiB
C
Raw Normal View History

2018-07-17 15:15:58 +02:00
#ifndef _GLOBALS_H
#define _GLOBALS_H
2018-03-18 19:45:17 +01:00
// The mother of all embedded development...
#include <Arduino.h>
2018-07-17 11:53:43 +02:00
// needed for ESP_LOGx on arduino framework
2018-07-19 21:53:56 +02:00
#include <esp32-hal-log.h>
2018-07-17 11:53:43 +02:00
// attn: increment version after modifications to configData_t truct!
2018-07-21 22:35:30 +02:00
#define PROGVERSION "1.3.92" // use max 10 chars here!
2018-07-17 11:53:43 +02:00
#define PROGNAME "PAXCNT"
2018-03-18 19:45:17 +01:00
// std::set for unified array functions
2018-06-10 21:03:16 +02:00
#include <set>
#include <array>
#include <algorithm>
2018-03-18 19:45:17 +01:00
2018-07-17 11:53:43 +02:00
// Struct holding devices's runtime configuration
typedef struct {
uint8_t lorasf; // 7-12, lora spreadfactor
uint8_t txpower; // 2-15, lora tx power
uint8_t adrmode; // 0=disabled, 1=enabled
uint8_t screensaver; // 0=disabled, 1=enabled
uint8_t screenon; // 0=disabled, 1=enabled
uint8_t countermode; // 0=cyclic unconfirmed, 1=cumulative, 2=cyclic confirmed
int16_t rssilimit; // threshold for rssilimiter, negative value!
uint8_t sendcycle; // payload send cycle [seconds/2]
uint8_t wifichancycle; // wifi channel switch cycle [seconds/100]
uint8_t blescantime; // BLE scan cycle duration [seconds]
uint8_t blescan; // 0=disabled, 1=enabled
uint8_t wifiant; // 0=internal, 1=external (for LoPy/LoPy4)
uint8_t vendorfilter; // 0=disabled, 1=enabled
uint8_t rgblum; // RGB Led luminosity (0..100%)
uint8_t gpsmode; // 0=disabled, 1=enabled
char version[10]; // Firmware version
} configData_t;
2018-06-08 22:41:37 +02:00
2018-07-19 21:53:56 +02:00
// global variables
extern configData_t cfg; // current device configuration
extern char display_line6[], display_line7[]; // screen buffers
extern uint8_t channel; // wifi channel rotation counter
2018-07-21 23:13:28 +02:00
extern uint16_t macs_total, macs_wifi, macs_ble, batt_volt; // display values
extern std::set<uint16_t> macs; // temp storage for MACs
2018-07-14 23:38:43 +02:00
extern hw_timer_t *channelSwitch, *sendCycle;
2018-07-15 14:28:05 +02:00
extern portMUX_TYPE timerMux;
2018-07-17 15:15:58 +02:00
#ifdef HAS_GPS
#include "gps.h"
#endif
2018-07-19 22:33:37 +02:00
#include "payload.h"
2018-07-17 11:53:43 +02:00
#ifdef HAS_LORA
#include "lorawan.h"
#endif
#ifdef HAS_DISPLAY
#include "display.h"
#endif
#ifdef BLECOUNTER
#include "blescan.h"
#endif
#ifdef HAS_BATTERY_PROBE
#include "battery.h"
#endif
#ifdef HAS_ANTENNA_SWITCH
#include "antenna.h"
#endif
void reset_counters(void);
void blink_LED(uint16_t set_color, uint16_t set_blinkduration);
void led_loop(void);
2018-07-17 15:15:58 +02:00
uint64_t uptime();
#endif