TTGO-T-Beam-LoRa-APRS/include/taskTNC.h
Łukasz Nidecki 1c88544e2e TNC in separate task
Code cleanup
2021-02-15 21:53:37 +01:00

14 lines
302 B
C

#include <Arduino.h>
#include "TTGO_T-Beam_LoRa_APRS_config.h"
#include <KISS_TO_TNC2.h>
#if defined(ENABLE_BLUETOOTH)
#include "BluetoothSerial.h"
extern BluetoothSerial SerialBT;
#endif
extern QueueHandle_t tncToSendQueue;
extern QueueHandle_t tncReceivedQueue;
void taskTNC(void *parameter);