2025-06-15 23:48:49 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#define RADIOLIB_STATIC_ONLY 1
|
|
|
|
|
|
|
|
|
|
#include <RadioLib.h>
|
|
|
|
|
#include <helpers/AutoDiscoverRTCClock.h>
|
2025-07-13 11:37:33 +02:00
|
|
|
#include <helpers/radiolib/CustomSX1262Wrapper.h>
|
|
|
|
|
#include <helpers/radiolib/RadioLibWrappers.h>
|
2025-06-15 23:48:49 +01:00
|
|
|
#include <helpers/SensorManager.h>
|
2025-09-03 21:37:07 +02:00
|
|
|
#include <WaveshareBoard.h>
|
2025-06-15 23:48:49 +01:00
|
|
|
|
|
|
|
|
extern WaveshareBoard board;
|
|
|
|
|
extern WRAPPER_CLASS radio_driver;
|
|
|
|
|
extern AutoDiscoverRTCClock rtc_clock;
|
|
|
|
|
extern SensorManager sensors;
|
|
|
|
|
|
|
|
|
|
bool radio_init();
|
|
|
|
|
mesh::LocalIdentity radio_new_identity();
|
2026-02-10 14:56:20 +00:00
|
|
|
|