mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 21:51:46 +00:00
d14d2c89c3
* WIP * ESP8266 SAM fun * I2S audio / ext. notification module * Remove * Protos * Add use_i2s_as_buzzer from protos * Fixes * Stuff * Thing * Ext. Notification working(ish) * Remove SAM commented code * Trunk upgrade * Trunk * Fixes * Slow not fast... :-| * T-Deck and T-Watch don't use normal buttons * Stop ext. notification nagging with touchscreen as well * Add button gpio back for T-Deck, but guard against long-press during ext. notification * Ext. notification wrap up * Better place to guard against long-press false positives * Adjust default gain and guard against non-i2s devices referencing audio-thread * Simplify guard logic with a boolean * Supress uninitMemberVar * Protos merge got out of wack * Trunk resolution * Remove extra crap * Cleanup and thread-interval * Default to alert message buzzer and add nag timeout * Formatting
85 lines
2.3 KiB
C++
85 lines
2.3 KiB
C++
#pragma once
|
|
|
|
#include "GPSStatus.h"
|
|
#include "NodeStatus.h"
|
|
#include "PowerStatus.h"
|
|
#include "detect/ScanI2C.h"
|
|
#include "graphics/Screen.h"
|
|
#include "memGet.h"
|
|
#include "mesh/generated/meshtastic/config.pb.h"
|
|
#include "mesh/generated/meshtastic/telemetry.pb.h"
|
|
#include <SPI.h>
|
|
#include <map>
|
|
#if !defined(ARCH_PORTDUINO) && !defined(ARCH_STM32WL)
|
|
#include <SparkFun_ATECCX08a_Arduino_Library.h>
|
|
#endif
|
|
#if defined(ARCH_ESP32) && !defined(CONFIG_IDF_TARGET_ESP32S2)
|
|
#include "nimble/NimbleBluetooth.h"
|
|
extern NimbleBluetooth *nimbleBluetooth;
|
|
#endif
|
|
#ifdef ARCH_NRF52
|
|
#include "NRF52Bluetooth.h"
|
|
extern NRF52Bluetooth *nrf52Bluetooth;
|
|
#endif
|
|
|
|
extern ScanI2C::DeviceAddress screen_found;
|
|
extern ScanI2C::DeviceAddress cardkb_found;
|
|
extern uint8_t kb_model;
|
|
extern ScanI2C::DeviceAddress rtc_found;
|
|
extern ScanI2C::DeviceAddress accelerometer_found;
|
|
extern ScanI2C::FoundDevice rgb_found;
|
|
|
|
extern bool eink_found;
|
|
extern bool pmu_found;
|
|
extern bool isCharging;
|
|
extern bool isUSBPowered;
|
|
|
|
#if !defined(ARCH_PORTDUINO) && !defined(ARCH_STM32WL)
|
|
extern ATECCX08A atecc;
|
|
#endif
|
|
|
|
#ifdef T_WATCH_S3
|
|
#include <Adafruit_DRV2605.h>
|
|
extern Adafruit_DRV2605 drv;
|
|
#endif
|
|
|
|
#ifdef HAS_I2S
|
|
#include "AudioThread.h"
|
|
extern AudioThread *audioThread;
|
|
#endif
|
|
|
|
extern bool isVibrating;
|
|
|
|
extern int TCPPort; // set by Portduino
|
|
|
|
// Global Screen singleton.
|
|
extern graphics::Screen *screen;
|
|
// extern Observable<meshtastic::PowerStatus> newPowerStatus; //TODO: move this to main-esp32.cpp somehow or a helper class
|
|
|
|
// extern meshtastic::PowerStatus *powerStatus;
|
|
// extern meshtastic::GPSStatus *gpsStatus;
|
|
// extern meshtastic::NodeStatusHandler *nodeStatusHandler;
|
|
|
|
// Return a human readable string of the form "Meshtastic_ab13"
|
|
const char *getDeviceName();
|
|
void getPiMacAddr(uint8_t *dmac);
|
|
|
|
extern uint32_t timeLastPowered;
|
|
|
|
extern uint32_t rebootAtMsec;
|
|
extern uint32_t shutdownAtMsec;
|
|
|
|
extern uint32_t serialSinceMsec;
|
|
|
|
extern int heltec_version;
|
|
|
|
// If a thread does something that might need for it to be rescheduled ASAP it can set this flag
|
|
// This will suppress the current delay and instead try to run ASAP.
|
|
extern bool runASAP;
|
|
|
|
void nrf52Setup(), esp32Setup(), nrf52Loop(), esp32Loop(), rp2040Setup(), clearBonds();
|
|
|
|
meshtastic_DeviceMetadata getDeviceMetadata();
|
|
|
|
// FIXME, we default to 4MHz SPI, SPI mode 0, check if the datasheet says it can really do that
|
|
extern SPISettings spiSettings; |