Files
meshtastic-firmware/src/MeshRadio.h
2020-02-01 11:56:32 -08:00

41 lines
969 B
C++

#pragma once
#include <RH_RF95.h>
#include <RHMesh.h>
#define NODENUM_BROADCAST 255
typedef int ErrorCode;
typedef uint8_t NodeNum;
/// Callback for a receive packet
typedef void (*MeshRXHandler)(NodeNum from, NodeNum to, std::string packet);
/**
* A raw low level interface to our mesh. Only understands nodenums and bytes (not protobufs or node ids)
*/
class MeshRadio {
public:
MeshRadio();
bool init();
/// Send a packet - the current implementation blocks for a while possibly (FIXME)
ErrorCode sendTo(NodeNum dest, const uint8_t *buf, size_t len);
/// Do loop callback operations (we currently FIXME poll the receive mailbox here)
/// for received packets it will call the rx handler
void loop();
void setRXHandler(MeshRXHandler h) { rxHandler = h; }
private:
RH_RF95 rf95; // the raw radio interface
RHMesh manager;
MeshRXHandler rxHandler;
};
extern MeshRadio radio;
void mesh_init();
void mesh_loop();