Skip to content

Commit

Permalink
Merge branch 'disconnection_fix' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
rechrtb committed Feb 29, 2024
2 parents ced896a + 5148a9e commit abd54a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Connection.cpp
Original file line number Diff line number Diff line change
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 abd54a3

Please sign in to comment.