23 lines
897 B
C
23 lines
897 B
C
/****************************************************************************************************************************
|
|
multiFileProject.h
|
|
For ESP32
|
|
|
|
AsyncTCP_SSL is a library for the ESP32
|
|
|
|
Built by Khoi Hoang https://github.com/khoih-prog/AsyncTCP_SSL
|
|
Licensed under MIT license
|
|
*****************************************************************************************************************************/
|
|
|
|
// To demo how to include files in multi-file Projects
|
|
|
|
#pragma once
|
|
|
|
// Use larger queue size if necessary for large data transfer. Default is 512 bytes if not defined here
|
|
#define ASYNC_QUEUE_LENGTH 512
|
|
|
|
// Use larger priority if necessary. Default is 10 if not defined here. Must be > 4 or adjusted to 4
|
|
#define CONFIG_ASYNC_TCP_PRIORITY (12)
|
|
|
|
// Can be included as many times as necessary, without `Multiple Definitions` Linker Error
|
|
#include "AsyncTCP_SSL.hpp"
|