mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-05-10 17:35:11 +00:00
32 lines
839 B
C
32 lines
839 B
C
#pragma once
|
|
|
|
#define RADIOLIB_STATIC_ONLY 1
|
|
#include <MeshtinyBoard.h>
|
|
#include <RadioLib.h>
|
|
#include <helpers/ArduinoHelpers.h>
|
|
#include <helpers/AutoDiscoverRTCClock.h>
|
|
#include <helpers/radiolib/CustomSX1262Wrapper.h>
|
|
#include <helpers/radiolib/RadioLibWrappers.h>
|
|
#ifdef DISPLAY_CLASS
|
|
#include <helpers/ui/MomentaryButton.h>
|
|
#include <helpers/ui/SSD1306Display.h>
|
|
#endif
|
|
#include <helpers/sensors/EnvironmentSensorManager.h>
|
|
|
|
extern MeshtinyBoard board;
|
|
extern WRAPPER_CLASS radio_driver;
|
|
extern AutoDiscoverRTCClock rtc_clock;
|
|
extern EnvironmentSensorManager sensors;
|
|
|
|
#ifdef DISPLAY_CLASS
|
|
extern DISPLAY_CLASS display;
|
|
extern MomentaryButton user_btn;
|
|
extern MomentaryButton joystick_left;
|
|
extern MomentaryButton joystick_right;
|
|
extern MomentaryButton back_btn;
|
|
#endif
|
|
|
|
bool radio_init();
|
|
mesh::LocalIdentity radio_new_identity();
|
|
|