DL9SAU-TTGO-T-Beam-LoRa-APRS/include/taskTNC.h

17 wiersze
362 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"
#include "wifi_clients.h"
#endif
extern QueueHandle_t tncToSendQueue;
extern QueueHandle_t tncReceivedQueue;
[[noreturn]] void taskTNC(void *parameter);