From 80c5d79e91bebd00dc045405d2e304bd6497be47 Mon Sep 17 00:00:00 2001 From: sh123 Date: Tue, 8 Jun 2021 17:41:13 +0300 Subject: [PATCH] Use more consistent name --- config.h | 2 +- esp32_loraprs.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.h b/config.h index 462b8dd..83d83c6 100644 --- a/config.h +++ b/config.h @@ -29,7 +29,7 @@ #define CFG_LORA_ENABLE_CRC true // set to false for speech data #define CFG_BT_NAME "loraprs" -#define CFG_USE_BLE false // set to true to use bluetooth low energy (for ios devices) +#define CFG_BT_USE_BLE false // set to true to use bluetooth low energy (for ios devices) #define CFG_APRS_LOGIN "NOCALL-10" #define CFG_APRS_PASS "12345" diff --git a/esp32_loraprs.ino b/esp32_loraprs.ino index 2ffe85c..33ebc57 100644 --- a/esp32_loraprs.ino +++ b/esp32_loraprs.ino @@ -47,7 +47,7 @@ void initializeConfig(LoraPrs::Config &cfg) { // bluetooth device name cfg.BtName = CFG_BT_NAME; - cfg.BtEnableBle = CFG_USE_BLE; + cfg.BtEnableBle = CFG_BT_USE_BLE; // server mode wifi paramaters cfg.WifiSsid = CFG_WIFI_SSID;