Skip to content

Commit

Permalink
Tentative disconnection fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rechrtb committed Feb 16, 2024
1 parent 43986c3 commit 0f8bdc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Config.h
Expand Up @@ -5,7 +5,7 @@

#define NO_WIFI_SLEEP 0

#define VERSION_MAIN "2.1beta6"
#define VERSION_MAIN "2.1beta7"

#if NO_WIFI_SLEEP
#define VERSION_SLEEP "-nosleep"
Expand Down
2 changes: 1 addition & 1 deletion src/Connection.cpp
Expand Up @@ -334,7 +334,7 @@ void Connection::Report()

/*static*/ void Connection::Init()
{
connectionQueue = xQueueCreate(MaxConnections, sizeof(ConnectionEvent));
connectionQueue = xQueueCreate(MaxConnections * 3, sizeof(ConnectionEvent));
allocateMutex = xSemaphoreCreateMutex();
xTaskCreate(ConnectionTask, "conn", CONNECTION_TASK, NULL, CONNECTION_PRIO, NULL);

Expand Down

0 comments on commit 0f8bdc1

Please sign in to comment.