mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-03-31 01:45:45 +00:00
* BasChatMesh: new onContactRequest(), for PAYLOAD_TYPE_REQ handling. * companion, repeater and room_server: now with basic 'plumbing' to handle REQ_TYPE_GET_TELEMETRY_DATA (0x03). * dependency: added CayenneLPP to libdeps * all target.* modules now with a stub 'sensors' object.
17 lines
441 B
C
17 lines
441 B
C
#pragma once
|
|
|
|
#include <helpers/ESP32Board.h>
|
|
#include <helpers/esp32/ESPNOWRadio.h>
|
|
#include <helpers/SensorManager.h>
|
|
|
|
extern ESP32Board board;
|
|
extern ESPNOWRadio radio_driver;
|
|
extern ESP32RTCClock rtc_clock;
|
|
extern SensorManager sensors;
|
|
|
|
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();
|