Update xsns_102_ld2402.ino, command table broken (#23504)

Command pointer table broken after refactoring 3a28938b91

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.
This commit is contained in:
sfromis 2025-06-02 21:53:08 +02:00 committed by GitHub
parent d94d7c8972
commit e7f9f51e27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 };