mirror of
https://github.com/esphome/esphome.git
synced 2024-11-24 16:08:10 +01:00
static const
This commit is contained in:
parent
bff381f6c5
commit
ccd10c9fd9
1 changed files with 6 additions and 6 deletions
|
@ -17,11 +17,11 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include "sdkconfig.h"
|
#include "sdkconfig.h"
|
||||||
|
|
||||||
#define CONFIG_MODEM_UART_RX_BUFFER_SIZE 1024
|
static const size_t CONFIG_MODEM_UART_RX_BUFFER_SIZE = 1024;
|
||||||
#define CONFIG_MODEM_UART_TX_BUFFER_SIZE 512
|
static const size_t CONFIG_MODEM_UART_TX_BUFFER_SIZE = 512;
|
||||||
#define CONFIG_MODEM_UART_EVENT_QUEUE_SIZE 30
|
static const uint8_t CONFIG_MODEM_UART_EVENT_QUEUE_SIZE = 30;
|
||||||
#define CONFIG_MODEM_UART_EVENT_TASK_STACK_SIZE 2048
|
static const size_t CONFIG_MODEM_UART_EVENT_TASK_STACK_SIZE = 2048;
|
||||||
#define CONFIG_MODEM_UART_EVENT_TASK_PRIORITY 5
|
static const uint8_t CONFIG_MODEM_UART_EVENT_TASK_PRIORITY = 5;
|
||||||
|
|
||||||
namespace esphome {
|
namespace esphome {
|
||||||
namespace gsm {
|
namespace gsm {
|
||||||
|
|
Loading…
Reference in a new issue