Added Pi PIcoW support in the following modes:

- Companion Radio over USB Serial
- Repeater
- Room Server
- Terminal Chat
This commit is contained in:
AeroXuk
2025-04-21 21:17:03 +01:00
orang tua a5f210779f
melakukan 99246e6b6f
13 mengubah file dengan 442 tambahan dan 2 penghapusan
+18
Melihat File
@@ -0,0 +1,18 @@
#pragma once
#define RADIOLIB_STATIC_ONLY 1
#include <RadioLib.h>
#include <helpers/RadioLibWrappers.h>
#include <helpers/rp2040/PicoWBoard.h>
#include <helpers/CustomSX1262Wrapper.h>
#include <helpers/AutoDiscoverRTCClock.h>
extern PicoWBoard board;
extern WRAPPER_CLASS radio_driver;
extern AutoDiscoverRTCClock rtc_clock;
bool radio_init();
uint32_t radio_get_rng_seed();
void radio_set_params(float freq, float bw, uint8_t sf, uint8_t cr);
void radio_set_tx_power(uint8_t dbm);
mesh::LocalIdentity radio_new_identity();