mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-20 22:13:47 +00:00
Merge remote-tracking branch 'jquatier/dev' into button-management
This commit is contained in:
commit
2f7aa6d9a1
7 changed files with 319 additions and 4 deletions
|
|
@ -13,6 +13,17 @@
|
||||||
#define P_LORA_MOSI 44
|
#define P_LORA_MOSI 44
|
||||||
#define SX126X_POWER_EN 37
|
#define SX126X_POWER_EN 37
|
||||||
|
|
||||||
|
#define P_GPS_SDA 13 //GPS SDA pin (output option)
|
||||||
|
#define P_GPS_SCL 14 //GPS SCL pin (output option)
|
||||||
|
#define P_GPS_TX 16 //GPS TX pin
|
||||||
|
#define P_GPS_RX 15 //GPS RX pin
|
||||||
|
#define P_GPS_STANDBY_A 34 //GPS Reset/Standby pin (IO2 for socket A)
|
||||||
|
#define P_GPS_STANDBY_C 4 //GPS Reset/Standby pin (IO4 for socket C)
|
||||||
|
#define P_GPS_STANDBY_F 9 //GPS Reset/Standby pin (IO5 for socket F)
|
||||||
|
#define P_GPS_1PPS 17 //GPS PPS pin
|
||||||
|
#define GPS_BAUD_RATE 9600
|
||||||
|
#define GPS_ADDRESS 0x42 //i2c address for GPS
|
||||||
|
|
||||||
#define SX126X_DIO2_AS_RF_SWITCH true
|
#define SX126X_DIO2_AS_RF_SWITCH true
|
||||||
#define SX126X_DIO3_TCXO_VOLTAGE 1.8
|
#define SX126X_DIO3_TCXO_VOLTAGE 1.8
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,39 @@ void GxEPDDisplay::drawRect(int x, int y, int w, int h) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void GxEPDDisplay::drawXbm(int x, int y, const uint8_t* bits, int w, int h) {
|
void GxEPDDisplay::drawXbm(int x, int y, const uint8_t* bits, int w, int h) {
|
||||||
display.drawBitmap(x*SCALE_X, (y*SCALE_Y) + 10, bits, w, h, GxEPD_BLACK);
|
// Calculate the base position in display coordinates
|
||||||
|
uint16_t startX = x * SCALE_X;
|
||||||
|
uint16_t startY = y * SCALE_Y;
|
||||||
|
|
||||||
|
// Width in bytes for bitmap processing
|
||||||
|
uint16_t widthInBytes = (w + 7) / 8;
|
||||||
|
|
||||||
|
// Process the bitmap row by row
|
||||||
|
for (uint16_t by = 0; by < h; by++) {
|
||||||
|
// Calculate the target y-coordinates for this logical row
|
||||||
|
int y1 = startY + (int)(by * SCALE_Y);
|
||||||
|
int y2 = startY + (int)((by + 1) * SCALE_Y);
|
||||||
|
int block_h = y2 - y1;
|
||||||
|
|
||||||
|
// Scan across the row bit by bit
|
||||||
|
for (uint16_t bx = 0; bx < w; bx++) {
|
||||||
|
// Calculate the target x-coordinates for this logical column
|
||||||
|
int x1 = startX + (int)(bx * SCALE_X);
|
||||||
|
int x2 = startX + (int)((bx + 1) * SCALE_X);
|
||||||
|
int block_w = x2 - x1;
|
||||||
|
|
||||||
|
// Get the current bit
|
||||||
|
uint16_t byteOffset = (by * widthInBytes) + (bx / 8);
|
||||||
|
uint8_t bitMask = 0x80 >> (bx & 7);
|
||||||
|
bool bitSet = pgm_read_byte(bits + byteOffset) & bitMask;
|
||||||
|
|
||||||
|
// If the bit is set, draw a block of pixels
|
||||||
|
if (bitSet) {
|
||||||
|
// Draw the block as a filled rectangle
|
||||||
|
display.fillRect(x1, y1, block_w, block_h, GxEPD_BLACK);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t GxEPDDisplay::getTextWidth(const char* str) {
|
uint16_t GxEPDDisplay::getTextWidth(const char* str) {
|
||||||
|
|
|
||||||
|
|
@ -336,7 +336,7 @@ bool TbeamSupSensorManager::begin() {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool TbeamSupSensorManager::querySensors(uint8_t requester_permissions, CayenneLPP& telemetry) {
|
bool TbeamSupSensorManager::querySensors(uint8_t requester_permissions, CayenneLPP& telemetry) {
|
||||||
if (requester_permissions & TELEM_PERM_LOCATION) { // does requester have permission?
|
if (requester_permissions & TELEM_PERM_LOCATION && gps_active) { // does requester have permission?
|
||||||
telemetry.addGPS(TELEM_CHANNEL_SELF, node_lat, node_lon, node_altitude);
|
telemetry.addGPS(TELEM_CHANNEL_SELF, node_lat, node_lon, node_altitude);
|
||||||
}
|
}
|
||||||
if (requester_permissions & TELEM_PERM_ENVIRONMENT && bme_active) { // does requester have permission?
|
if (requester_permissions & TELEM_PERM_ENVIRONMENT && bme_active) { // does requester have permission?
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,8 @@ build_src_filter = ${nrf52840_base.build_src_filter}
|
||||||
lib_deps =
|
lib_deps =
|
||||||
${nrf52840_base.lib_deps}
|
${nrf52840_base.lib_deps}
|
||||||
adafruit/Adafruit SSD1306 @ ^2.5.13
|
adafruit/Adafruit SSD1306 @ ^2.5.13
|
||||||
|
stevemarple/MicroNMEA @ ^2.0.6
|
||||||
|
sparkfun/SparkFun u-blox GNSS Arduino Library @ ^2.2.27
|
||||||
|
|
||||||
[env:RAK_4631_Repeater]
|
[env:RAK_4631_Repeater]
|
||||||
extends = rak4631
|
extends = rak4631
|
||||||
|
|
@ -95,6 +97,29 @@ lib_deps =
|
||||||
${rak4631.lib_deps}
|
${rak4631.lib_deps}
|
||||||
densaugeo/base64 @ ~1.4.0
|
densaugeo/base64 @ ~1.4.0
|
||||||
|
|
||||||
|
[env:RAK_4631_GPS_companion_radio_ble]
|
||||||
|
extends = rak4631
|
||||||
|
build_flags =
|
||||||
|
${rak4631.build_flags}
|
||||||
|
-D DISPLAY_CLASS=SSD1306Display
|
||||||
|
-D MAX_CONTACTS=100
|
||||||
|
-D MAX_GROUP_CHANNELS=8
|
||||||
|
-D BLE_PIN_CODE=123456
|
||||||
|
-D BLE_DEBUG_LOGGING=1
|
||||||
|
-D OFFLINE_QUEUE_SIZE=256
|
||||||
|
-D ENV_INCLUDE_GPS=1
|
||||||
|
; -D ENABLE_PRIVATE_KEY_IMPORT=1
|
||||||
|
; -D ENABLE_PRIVATE_KEY_EXPORT=1
|
||||||
|
; -D MESH_PACKET_LOGGING=1
|
||||||
|
; -D MESH_DEBUG=1
|
||||||
|
build_src_filter = ${rak4631.build_src_filter}
|
||||||
|
+<helpers/ui/SSD1306Display.cpp>
|
||||||
|
+<helpers/nrf52/SerialBLEInterface.cpp>
|
||||||
|
+<../examples/companion_radio>
|
||||||
|
lib_deps =
|
||||||
|
${rak4631.lib_deps}
|
||||||
|
densaugeo/base64 @ ~1.4.0
|
||||||
|
|
||||||
[env:RAK_4631_terminal_chat]
|
[env:RAK_4631_terminal_chat]
|
||||||
extends = rak4631
|
extends = rak4631
|
||||||
build_flags =
|
build_flags =
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include "target.h"
|
#include "target.h"
|
||||||
#include <helpers/ArduinoHelpers.h>
|
#include <helpers/ArduinoHelpers.h>
|
||||||
|
#include <helpers/sensors/MicroNMEALocationProvider.h>
|
||||||
|
|
||||||
RAK4631Board board;
|
RAK4631Board board;
|
||||||
|
|
||||||
|
|
@ -10,7 +11,13 @@ WRAPPER_CLASS radio_driver(radio, board);
|
||||||
|
|
||||||
VolatileRTCClock fallback_clock;
|
VolatileRTCClock fallback_clock;
|
||||||
AutoDiscoverRTCClock rtc_clock(fallback_clock);
|
AutoDiscoverRTCClock rtc_clock(fallback_clock);
|
||||||
SensorManager sensors;
|
|
||||||
|
#if ENV_INCLUDE_GPS
|
||||||
|
MicroNMEALocationProvider nmea = MicroNMEALocationProvider(Wire);
|
||||||
|
RAK4631SensorManager sensors = RAK4631SensorManager(nmea);
|
||||||
|
#else
|
||||||
|
RAK4631SensorManager sensors;
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef DISPLAY_CLASS
|
#ifdef DISPLAY_CLASS
|
||||||
DISPLAY_CLASS display;
|
DISPLAY_CLASS display;
|
||||||
|
|
@ -20,6 +27,52 @@ SensorManager sensors;
|
||||||
#define LORA_CR 5
|
#define LORA_CR 5
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef MESH_DEBUG
|
||||||
|
uint32_t deviceOnline = 0x00;
|
||||||
|
void scanDevices(TwoWire *w)
|
||||||
|
{
|
||||||
|
uint8_t err, addr;
|
||||||
|
int nDevices = 0;
|
||||||
|
uint32_t start = 0;
|
||||||
|
|
||||||
|
Serial.println("Scanning I2C for Devices");
|
||||||
|
for (addr = 1; addr < 127; addr++) {
|
||||||
|
start = millis();
|
||||||
|
w->beginTransmission(addr); delay(2);
|
||||||
|
err = w->endTransmission();
|
||||||
|
if (err == 0) {
|
||||||
|
nDevices++;
|
||||||
|
switch (addr) {
|
||||||
|
case 0x42:
|
||||||
|
Serial.println("\tFound RAK12500 GPS Sensor");
|
||||||
|
deviceOnline |= RAK12500_ONLINE;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
Serial.print("\tI2C device found at address 0x");
|
||||||
|
if (addr < 16) {
|
||||||
|
Serial.print("0");
|
||||||
|
}
|
||||||
|
Serial.print(addr, HEX);
|
||||||
|
Serial.println(" !");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
} else if (err == 4) {
|
||||||
|
Serial.print("Unknow error at address 0x");
|
||||||
|
if (addr < 16) {
|
||||||
|
Serial.print("0");
|
||||||
|
}
|
||||||
|
Serial.println(addr, HEX);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (nDevices == 0)
|
||||||
|
Serial.println("No I2C devices found\n");
|
||||||
|
|
||||||
|
Serial.println("Scan for devices is complete.");
|
||||||
|
Serial.println("\n");
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
bool radio_init() {
|
bool radio_init() {
|
||||||
rtc_clock.begin(Wire);
|
rtc_clock.begin(Wire);
|
||||||
|
|
||||||
|
|
@ -68,6 +121,142 @@ void radio_set_tx_power(uint8_t dbm) {
|
||||||
radio.setOutputPower(dbm);
|
radio.setOutputPower(dbm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if ENV_INCLUDE_GPS
|
||||||
|
void RAK4631SensorManager::start_gps()
|
||||||
|
{
|
||||||
|
//function currently not used
|
||||||
|
gps_active = true;
|
||||||
|
pinMode(disStandbyPin, OUTPUT);
|
||||||
|
digitalWrite(disStandbyPin, 1);
|
||||||
|
MESH_DEBUG_PRINTLN("GPS should be on now");
|
||||||
|
}
|
||||||
|
|
||||||
|
void RAK4631SensorManager::stop_gps()
|
||||||
|
{
|
||||||
|
//function currently not used
|
||||||
|
gps_active = false;
|
||||||
|
pinMode(disStandbyPin, OUTPUT);
|
||||||
|
digitalWrite(disStandbyPin, 0);
|
||||||
|
MESH_DEBUG_PRINTLN("GPS should be off now");
|
||||||
|
}
|
||||||
|
|
||||||
|
void RAK4631SensorManager::sleep_gps() {
|
||||||
|
gps_active = false;
|
||||||
|
ublox_GNSS.powerSaveMode();
|
||||||
|
MESH_DEBUG_PRINTLN("GPS should be sleeping now");
|
||||||
|
}
|
||||||
|
|
||||||
|
void RAK4631SensorManager::wake_gps() {
|
||||||
|
gps_active = true;
|
||||||
|
ublox_GNSS.powerSaveMode(false);
|
||||||
|
MESH_DEBUG_PRINTLN("GPS should be waking now");
|
||||||
|
}
|
||||||
|
|
||||||
|
bool RAK4631SensorManager::gpsIsAwake(uint32_t ioPin){
|
||||||
|
|
||||||
|
int pinInitialState = 0;
|
||||||
|
|
||||||
|
//set initial waking state
|
||||||
|
pinMode(ioPin,OUTPUT);
|
||||||
|
digitalWrite(ioPin,0);
|
||||||
|
delay(1000);
|
||||||
|
digitalWrite(ioPin,1);
|
||||||
|
delay(1000);
|
||||||
|
|
||||||
|
if (ublox_GNSS.begin(Wire) == true){
|
||||||
|
MESH_DEBUG_PRINTLN("GPS init correctly and GPS is turned on");
|
||||||
|
ublox_GNSS.setI2COutput(COM_TYPE_NMEA);
|
||||||
|
ublox_GNSS.saveConfigSelective(VAL_CFG_SUBSEC_IOPORT);
|
||||||
|
disStandbyPin = ioPin;
|
||||||
|
gps_active = true;
|
||||||
|
gps_present = true;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
MESH_DEBUG_PRINTLN("GPS failed to init on this IO pin... try the next");
|
||||||
|
//digitalWrite(ioPin,pinInitialState); //reset the IO pin to initial state
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
bool RAK4631SensorManager::begin() {
|
||||||
|
|
||||||
|
#ifdef MESH_DEBUG
|
||||||
|
scanDevices(&Wire);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if ENV_INCLUDE_GPS
|
||||||
|
//search for the correct IO standby pin depending on socket used
|
||||||
|
if(gpsIsAwake(P_GPS_STANDBY_A)){
|
||||||
|
MESH_DEBUG_PRINTLN("GPS is on socket A");
|
||||||
|
}
|
||||||
|
else if(gpsIsAwake(P_GPS_STANDBY_C)){
|
||||||
|
MESH_DEBUG_PRINTLN("GPS is on socket C");
|
||||||
|
}
|
||||||
|
else if(gpsIsAwake(P_GPS_STANDBY_F)){
|
||||||
|
MESH_DEBUG_PRINTLN("GPS is on socket F");
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
MESH_DEBUG_PRINTLN("Error: No GPS found on sockets A, C or F");
|
||||||
|
gps_active = false;
|
||||||
|
gps_present = false;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Now that GPS is found and set up, set to sleep for initial state
|
||||||
|
stop_gps();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
#if ENV_INCLUDE_GPS
|
||||||
|
bool RAK4631SensorManager::querySensors(uint8_t requester_permissions, CayenneLPP& telemetry) {
|
||||||
|
if (requester_permissions & TELEM_PERM_LOCATION && gps_active) { // does requester have permission?
|
||||||
|
telemetry.addGPS(TELEM_CHANNEL_SELF, node_lat, node_lon, node_altitude);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void RAK4631SensorManager::loop() {
|
||||||
|
static long next_update = 0;
|
||||||
|
|
||||||
|
_nmea->loop();
|
||||||
|
|
||||||
|
if (millis() > next_update && gps_active) {
|
||||||
|
node_lat = (double)ublox_GNSS.getLatitude()/10000000.;
|
||||||
|
node_lon = (double)ublox_GNSS.getLongitude()/10000000.;
|
||||||
|
node_altitude = (double)ublox_GNSS.getAltitude()/1000.;
|
||||||
|
MESH_DEBUG_PRINT("lat %f lon %f alt %f\r\n", node_lat, node_lon, node_altitude);
|
||||||
|
|
||||||
|
next_update = millis() + 1000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int RAK4631SensorManager::getNumSettings() const { return 1; } // just one supported: "gps" (power switch)
|
||||||
|
|
||||||
|
const char* RAK4631SensorManager::getSettingName(int i) const {
|
||||||
|
return i == 0 ? "gps" : NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
const char* RAK4631SensorManager::getSettingValue(int i) const {
|
||||||
|
if (i == 0) {
|
||||||
|
return gps_active ? "1" : "0";
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool RAK4631SensorManager::setSettingValue(const char* name, const char* value) {
|
||||||
|
if (strcmp(name, "gps") == 0) {
|
||||||
|
if (strcmp(value, "0") == 0) {
|
||||||
|
stop_gps();
|
||||||
|
} else {
|
||||||
|
start_gps();
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false; // not supported
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
mesh::LocalIdentity radio_new_identity() {
|
mesh::LocalIdentity radio_new_identity() {
|
||||||
RadioNoiseListener rng(radio);
|
RadioNoiseListener rng(radio);
|
||||||
return mesh::LocalIdentity(&rng); // create new random identity
|
return mesh::LocalIdentity(&rng); // create new random identity
|
||||||
|
|
|
||||||
|
|
@ -7,19 +7,74 @@
|
||||||
#include <helpers/CustomSX1262Wrapper.h>
|
#include <helpers/CustomSX1262Wrapper.h>
|
||||||
#include <helpers/AutoDiscoverRTCClock.h>
|
#include <helpers/AutoDiscoverRTCClock.h>
|
||||||
#include <helpers/SensorManager.h>
|
#include <helpers/SensorManager.h>
|
||||||
|
#if ENV_INCLUDE_GPS
|
||||||
|
#include <helpers/sensors/LocationProvider.h>
|
||||||
|
#include <SparkFun_u-blox_GNSS_Arduino_Library.h>
|
||||||
|
#endif
|
||||||
#ifdef DISPLAY_CLASS
|
#ifdef DISPLAY_CLASS
|
||||||
#include <helpers/ui/SSD1306Display.h>
|
#include <helpers/ui/SSD1306Display.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define _BV(x) (1 << x)
|
||||||
|
|
||||||
|
class RAK4631SensorManager: public SensorManager {
|
||||||
|
#if ENV_INCLUDE_GPS
|
||||||
|
bool gps_active = false;
|
||||||
|
bool gps_present = false;
|
||||||
|
LocationProvider * _nmea;
|
||||||
|
SFE_UBLOX_GNSS ublox_GNSS;
|
||||||
|
uint32_t disStandbyPin = 0;
|
||||||
|
|
||||||
|
void start_gps();
|
||||||
|
void stop_gps();
|
||||||
|
void sleep_gps();
|
||||||
|
void wake_gps();
|
||||||
|
bool gpsIsAwake(uint32_t ioPin);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
public:
|
||||||
|
#if ENV_INCLUDE_GPS
|
||||||
|
RAK4631SensorManager(LocationProvider &nmea): _nmea(&nmea) { }
|
||||||
|
|
||||||
|
bool querySensors(uint8_t requester_permissions, CayenneLPP& telemetry) override;
|
||||||
|
void loop() override;
|
||||||
|
int getNumSettings() const override;
|
||||||
|
const char* getSettingName(int i) const override;
|
||||||
|
const char* getSettingValue(int i) const override;
|
||||||
|
bool setSettingValue(const char* name, const char* value) override;
|
||||||
|
#else
|
||||||
|
RAK4631SensorManager() { }
|
||||||
|
#endif
|
||||||
|
bool begin() override;
|
||||||
|
};
|
||||||
|
|
||||||
extern RAK4631Board board;
|
extern RAK4631Board board;
|
||||||
extern WRAPPER_CLASS radio_driver;
|
extern WRAPPER_CLASS radio_driver;
|
||||||
extern AutoDiscoverRTCClock rtc_clock;
|
extern AutoDiscoverRTCClock rtc_clock;
|
||||||
extern SensorManager sensors;
|
extern RAK4631SensorManager sensors;
|
||||||
|
|
||||||
#ifdef DISPLAY_CLASS
|
#ifdef DISPLAY_CLASS
|
||||||
extern DISPLAY_CLASS display;
|
extern DISPLAY_CLASS display;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
enum {
|
||||||
|
POWERMANAGE_ONLINE = _BV(0),
|
||||||
|
DISPLAY_ONLINE = _BV(1),
|
||||||
|
RADIO_ONLINE = _BV(2),
|
||||||
|
GPS_ONLINE = _BV(3),
|
||||||
|
PSRAM_ONLINE = _BV(4),
|
||||||
|
SDCARD_ONLINE = _BV(5),
|
||||||
|
AXDL345_ONLINE = _BV(6),
|
||||||
|
BME280_ONLINE = _BV(7),
|
||||||
|
BMP280_ONLINE = _BV(8),
|
||||||
|
BME680_ONLINE = _BV(9),
|
||||||
|
QMC6310_ONLINE = _BV(10),
|
||||||
|
QMI8658_ONLINE = _BV(11),
|
||||||
|
PCF8563_ONLINE = _BV(12),
|
||||||
|
OSC32768_ONLINE = _BV(13),
|
||||||
|
RAK12500_ONLINE = _BV(14),
|
||||||
|
};
|
||||||
|
|
||||||
bool radio_init();
|
bool radio_init();
|
||||||
uint32_t radio_get_rng_seed();
|
uint32_t radio_get_rng_seed();
|
||||||
void radio_set_params(float freq, float bw, uint8_t sf, uint8_t cr);
|
void radio_set_params(float freq, float bw, uint8_t sf, uint8_t cr);
|
||||||
|
|
|
||||||
|
|
@ -71,6 +71,7 @@ build_flags =
|
||||||
-D DISPLAY_ROTATION=4
|
-D DISPLAY_ROTATION=4
|
||||||
-D DISPLAY_CLASS=GxEPDDisplay
|
-D DISPLAY_CLASS=GxEPDDisplay
|
||||||
-D OFFLINE_QUEUE_SIZE=256
|
-D OFFLINE_QUEUE_SIZE=256
|
||||||
|
-D PIN_BUZZER=6
|
||||||
; -D ENABLE_PRIVATE_KEY_IMPORT=1
|
; -D ENABLE_PRIVATE_KEY_IMPORT=1
|
||||||
; -D ENABLE_PRIVATE_KEY_EXPORT=1
|
; -D ENABLE_PRIVATE_KEY_EXPORT=1
|
||||||
; -D MESH_PACKET_LOGGING=1
|
; -D MESH_PACKET_LOGGING=1
|
||||||
|
|
@ -79,8 +80,10 @@ build_src_filter = ${ThinkNode_M1.build_src_filter}
|
||||||
+<helpers/nrf52/ThinkNodeM1.cpp>
|
+<helpers/nrf52/ThinkNodeM1.cpp>
|
||||||
+<helpers/nrf52/SerialBLEInterface.cpp>
|
+<helpers/nrf52/SerialBLEInterface.cpp>
|
||||||
+<helpers/ui/GxEPDDisplay.cpp>
|
+<helpers/ui/GxEPDDisplay.cpp>
|
||||||
|
+<helpers/ui/buzzer.cpp>
|
||||||
+<../examples/companion_radio>
|
+<../examples/companion_radio>
|
||||||
lib_deps =
|
lib_deps =
|
||||||
${ThinkNode_M1.lib_deps}
|
${ThinkNode_M1.lib_deps}
|
||||||
densaugeo/base64 @ ~1.4.0
|
densaugeo/base64 @ ~1.4.0
|
||||||
zinggjm/GxEPD2 @ 1.6.2
|
zinggjm/GxEPD2 @ 1.6.2
|
||||||
|
end2endzone/NonBlockingRTTTL@^1.3.0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue