mirror of
https://github.com/oe3cjb/TTGO-T-Beam-LoRa-APRS.git
synced 2026-03-18 10:44:43 +01:00
16 lines
334 B
C
16 lines
334 B
C
#include <Arduino.h>
|
|
#include <KISS_TO_TNC2.h>
|
|
|
|
#if defined(ENABLE_BLUETOOTH)
|
|
#include "BluetoothSerial.h"
|
|
extern BluetoothSerial SerialBT;
|
|
#endif
|
|
#if defined(ENABLE_WIFI)
|
|
#include "taskWebServer.h"
|
|
#endif
|
|
extern QueueHandle_t tncToSendQueue;
|
|
extern QueueHandle_t tncReceivedQueue;
|
|
|
|
[[noreturn]] void taskTNC(void *parameter);
|
|
|