Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Commit

Permalink
Compat with mathieucarbou/AsyncTCP
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieucarbou committed Oct 13, 2024
1 parent 797cfc4 commit b01052d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/AsyncTCP.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,17 @@ extern "C" {
#define CONFIG_ASYNC_TCP_RUNNING_CORE -1 //any available core
#define CONFIG_ASYNC_TCP_USE_WDT 1 //if enabled, adds between 33us and 200us per event
#endif
#ifndef CONFIG_ASYNC_TCP_STACK_SIZE
#define CONFIG_ASYNC_TCP_STACK_SIZE 16384 // 8192 * 2
#endif
#ifndef CONFIG_ASYNC_TCP_STACK
#define CONFIG_ASYNC_TCP_STACK 16384 // 8192 * 2
#define CONFIG_ASYNC_TCP_STACK CONFIG_ASYNC_TCP_STACK_SIZE
#endif
#ifndef CONFIG_ASYNC_TCP_PRIORITY
#define CONFIG_ASYNC_TCP_PRIORITY 3
#endif
#ifndef CONFIG_ASYNC_TCP_TASK_PRIORITY
#define CONFIG_ASYNC_TCP_TASK_PRIORITY 3
#define CONFIG_ASYNC_TCP_TASK_PRIORITY CONFIG_ASYNC_TCP_PRIORITY
#endif

class AsyncClient;
Expand Down

0 comments on commit b01052d

Please sign in to comment.