From e7f9f51e27396d5b694ed33cd7c2ed84719551ec Mon Sep 17 00:00:00 2001 From: sfromis <47082390+sfromis@users.noreply.github.com> Date: Mon, 2 Jun 2025 21:53:08 +0200 Subject: [PATCH] Update xsns_102_ld2402.ino, command table broken (#23504) Command pointer table broken after refactoring https://github.com/arendst/Tasmota/commit/3a28938b9153d01e7ccef0a03d981251ced56123 The error with a comma before an entry instead of after, to match the other pointers, looks very obvious to me. Hence, I'm submitting this PR without having the hardware, and thus not able to do a runtime test. --- tasmota/tasmota_xsns_sensor/xsns_102_ld2402.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/tasmota_xsns_sensor/xsns_102_ld2402.ino b/tasmota/tasmota_xsns_sensor/xsns_102_ld2402.ino index f074de137..f5b32145d 100644 --- a/tasmota/tasmota_xsns_sensor/xsns_102_ld2402.ino +++ b/tasmota/tasmota_xsns_sensor/xsns_102_ld2402.ino @@ -588,7 +588,7 @@ void (* const Ld2402Command[])(void) PROGMEM = { &CmndLd2402Help, #endif // LD2402_INCLUDE_HELP #ifdef LD2402_INCLUDE_FOLLOW - , &CmndLd2402Follow + &CmndLd2402Follow, #endif // LD2402_INCLUDE_FOLLOW &CmndLd2402Mode, &CmndLd2402AutoUpdate, &CmndLd2402AutoGain, &CmndLd2402Status, &CmndLd2402Common, &CmndLd2402Motion, &CmndLd2402Micro, &CmndLd2402Save, &CmndLd2402ReRead };