mirror of
https://github.com/manuelbl/ttn-esp32.git
synced 2025-06-15 04:14:28 +02:00
Improve constness
This commit is contained in:
parent
47063256a3
commit
99420c6a75
@ -25,11 +25,11 @@ const uart_port_t UART_NUM = (uart_port_t) CONFIG_TTN_PROVISION_UART_NUM;
|
|||||||
const int MAX_LINE_LENGTH = 128;
|
const int MAX_LINE_LENGTH = 128;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const char* TAG = "ttn_prov";
|
static const char* const TAG = "ttn_prov";
|
||||||
static const char* NVS_FLASH_PARTITION = "ttn";
|
static const char* const NVS_FLASH_PARTITION = "ttn";
|
||||||
static const char* NVS_FLASH_KEY_DEV_EUI = "devEui";
|
static const char* const NVS_FLASH_KEY_DEV_EUI = "devEui";
|
||||||
static const char* NVS_FLASH_KEY_APP_EUI = "appEui";
|
static const char* const NVS_FLASH_KEY_APP_EUI = "appEui";
|
||||||
static const char* NVS_FLASH_KEY_APP_KEY = "appKey";
|
static const char* const NVS_FLASH_KEY_APP_KEY = "appKey";
|
||||||
|
|
||||||
static uint8_t global_dev_eui[8];
|
static uint8_t global_dev_eui[8];
|
||||||
static uint8_t global_app_eui[8];
|
static uint8_t global_app_eui[8];
|
||||||
|
Loading…
Reference in New Issue
Block a user