You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
387 B
18 lines
387 B
#include <Arduino.h>
|
|
#include <KISS_TO_TNC2.h>
|
|
#include <KISS_TO_PKT.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);
|
|
|