Loading...
Searching...
No Matches
lorapub.h
1// ALLOW FORMATTING
2#ifndef LORAPUB_H
3#define LORAPUB_H
4
5#include "topic.h"
6#include "lora.h"
7#include "gpiopin.h"
8
9extern Topic *loraTopic;
10
11void vLoRaTransmit(void *pvParameters);
12void vLoRaReceive(void *pvParameters);
13void LoRa_setRfToggle(GPIOpin_t *rfToggle);
14
15LoRa_t *LoRa_getTransceiver();
16void LoRa_setTransceiver(LoRa_t *transceiver);
17void pubLoraInterrupt();
18
19#endif
Definition lora.h:30
Struct definition for a GPIO pin.
Definition gpiopin.h:151
Defines the API for LoRa communication.
Public representation of a Topic.
Definition topic.h:71