static const

This commit is contained in:
oarcher 2024-05-12 17:00:24 +02:00
parent bff381f6c5
commit ccd10c9fd9
1 changed files with 6 additions and 6 deletions

View File

@ -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 {
@ -366,4 +366,4 @@ void GSMComponent::powerdown(void) {
} // namespace gsm } // namespace gsm
} // namespace esphome } // namespace esphome
#endif #endif