forked from me-no-dev/AsyncTCP
Add CONFIG_ASYNC_TCP_QUEUE_SIZE
This commit is contained in:
+1
-1
@@ -97,7 +97,7 @@ static uint32_t _closed_index = []() {
|
||||
|
||||
static inline bool _init_async_event_queue(){
|
||||
if(!_async_queue){
|
||||
_async_queue = xQueueCreate(32, sizeof(lwip_event_packet_t *));
|
||||
_async_queue = xQueueCreate(CONFIG_ASYNC_TCP_QUEUE_SIZE, sizeof(lwip_event_packet_t *));
|
||||
if(!_async_queue){
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user