TTGO-T-Beam-LoRa-APRS/include/taskTNC.h
Rysiek Labus cd1a4c4252 Moving config to platformio.ini.
Set baud rate to 1200
2021-04-21 20:32:49 +02:00

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);