mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-03 19:29:57 +00:00
30 lines
903 B
C
30 lines
903 B
C
#pragma once
|
|
|
|
#include "GPSStatus.h"
|
|
#include "NodeStatus.h"
|
|
#include "PowerStatus.h"
|
|
#include "graphics/Screen.h"
|
|
|
|
extern bool axp192_found;
|
|
extern bool isCharging;
|
|
extern bool isUSBPowered;
|
|
|
|
// 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();
|
|
|
|
extern uint32_t rebootAtMsec;
|
|
|
|
// If a thread does something that might need for it to be rescheduled ASAP it can set this flag
|
|
// This will supress the current delay and instead try to run ASAP.
|
|
extern bool runASAP;
|
|
|
|
void nrf52Setup(), esp32Setup(), nrf52Loop(), esp32Loop();
|