mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 00:09:51 +03:00
increase rx/tx queue when running standalone
This commit is contained in:
@@ -32,8 +32,13 @@
|
|||||||
|
|
||||||
#include "helpers.h"
|
#include "helpers.h"
|
||||||
|
|
||||||
|
#if defined(EMSESP_STANDALONE)
|
||||||
|
#define MAX_RX_TELEGRAMS 100 // size of Rx queue
|
||||||
|
#define MAX_TX_TELEGRAMS 200 // size of Tx queue
|
||||||
|
#else
|
||||||
#define MAX_RX_TELEGRAMS 10 // size of Rx queue
|
#define MAX_RX_TELEGRAMS 10 // size of Rx queue
|
||||||
#define MAX_TX_TELEGRAMS 100 // size of Tx queue
|
#define MAX_TX_TELEGRAMS 100 // size of Tx queue
|
||||||
|
#endif
|
||||||
|
|
||||||
// default values for null values
|
// default values for null values
|
||||||
static constexpr uint8_t EMS_VALUE_BOOL = 0xFF; // used to mark that something is a boolean
|
static constexpr uint8_t EMS_VALUE_BOOL = 0xFF; // used to mark that something is a boolean
|
||||||
|
|||||||
Reference in New Issue
Block a user