From c6efee271b97bb6faee5470a3f9cdad9bde2aa84 Mon Sep 17 00:00:00 2001 From: Christopher Obbard Date: Thu, 5 Sep 2024 10:04:56 +0100 Subject: [PATCH] Remove some unused characters Signed-off-by: Christopher Obbard --- Software/USER_SETTINGS.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Software/USER_SETTINGS.cpp b/Software/USER_SETTINGS.cpp index 207d523c..6791cb58 100644 --- a/Software/USER_SETTINGS.cpp +++ b/Software/USER_SETTINGS.cpp @@ -20,8 +20,8 @@ volatile CAN_Configuration can_config = { #ifdef WEBSERVER volatile uint8_t AccessPointEnabled = true; //Set to either true/false to enable direct wifi access point -std::string ssid = "REPLACE_WITH_YOUR_SSID"; // Maximum of 63 characters; -std::string password = "REPLACE_WITH_YOUR_PASSWORD"; // Minimum of 8 characters; +std::string ssid = "REPLACE_WITH_YOUR_SSID"; // Maximum of 63 characters +std::string password = "REPLACE_WITH_YOUR_PASSWORD"; // Minimum of 8 characters const char* ssidAP = "Battery Emulator"; // Maximum of 63 characters, also used for device name on web interface const char* passwordAP = "123456789"; // Minimum of 8 characters; set to NULL if you want the access point to be open const uint8_t wifi_channel = 0; // Set to 0 for automatic channel selection