@@ -299,9 +299,9 @@ void System::button_init(bool refresh) {
299
299
300
300
if (is_valid_gpio (pbutton_gpio_)) {
301
301
if (!myPButton_.init (pbutton_gpio_, HIGH)) {
302
- LOG_INFO (F (" External multi -functional button not detected" ));
302
+ LOG_INFO (F (" Multi -functional button not detected" ));
303
303
} else {
304
- LOG_INFO (F (" External multi -functional button enabled" ));
304
+ LOG_INFO (F (" Multi -functional button enabled" ));
305
305
}
306
306
} else {
307
307
LOG_WARNING (F (" Invalid button GPIO. Check config." ));
@@ -827,7 +827,7 @@ void System::console_commands(Shell & shell, unsigned int context) {
827
827
return StateUpdateResult::CHANGED;
828
828
},
829
829
" local" );
830
- shell.printfln (" Loaded board profile %s with %d,%d,%d,%d,%d" , board_profile.c_str (), data[0 ], data[1 ], data[2 ], data[3 ], data[4 ]);
830
+ shell.printfln (" Loaded board profile %s ( %d,%d,%d,%d,%d) " , board_profile.c_str (), data[0 ], data[1 ], data[2 ], data[3 ], data[4 ]);
831
831
EMSESP::system_.network_init (true );
832
832
});
833
833
@@ -1023,19 +1023,17 @@ bool System::command_test(const char * value, const int8_t id) {
1023
1023
// returns false if profile is not found
1024
1024
bool System::load_board_profile (std::vector<uint8_t > & data, const std::string & board_profile) {
1025
1025
if (board_profile == " S32" ) {
1026
- data = {2 , 3 , 23 , 5 , 0 }; // Gateway S32
1026
+ data = {2 , 3 , 23 , 5 , 0 }; // BBQKees Gateway S32
1027
1027
} else if (board_profile == " E32" ) {
1028
- data = {2 , 4 , 5 , 17 , 33 }; // Gateway E32
1028
+ data = {2 , 4 , 5 , 17 , 33 }; // BBQKees Gateway E32
1029
1029
} else if (board_profile == " MT-ET" ) {
1030
1030
data = {2 , 18 , 23 , 5 , 0 }; // MT-ET Live D1 Mini
1031
1031
} else if (board_profile == " NODEMCU" ) {
1032
1032
data = {2 , 18 , 23 , 5 , 0 }; // NodeMCU 32S
1033
1033
} else if (board_profile == " LOLIN" ) {
1034
1034
data = {2 , 18 , 17 , 16 , 0 }; // Lolin D32
1035
- } else if (board_profile == " WEMOS" ) {
1036
- data = {2 , 18 , 17 , 16 , 0 }; // Wemos Mini D1 ESP32
1037
1035
} else if (board_profile == " OLIMEX" ) {
1038
- data = {0 , 4 , 5 , 17 , 34 }; // Olimex ESP32-EVB
1036
+ data = {0 , 0 , 36 , 4 , 34 }; // Olimex ESP32-EVB (uses U1TXD/U1RXD/BUTTON, no LED or Dallas)
1039
1037
} else if (board_profile == " TLK110" ) {
1040
1038
data = {2 , 4 , 5 , 17 , 33 }; // Generic Ethernet (TLK110)
1041
1039
} else if (board_profile == " LAN8720" ) {
0 commit comments