1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-12 19:10:32 +03:00

Move flash_read arguments around in CLI help (#14404)

This commit is contained in:
Osiris Inferi 2025-05-23 18:15:49 +02:00 committed by GitHub
parent da30581ceb
commit e9adc03a97
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6589,7 +6589,7 @@ const clicmd_t cmdTable[] = {
#endif
CLI_COMMAND_DEF("flash_info", "show flash chip info", NULL, cliFlashInfo),
#if defined(USE_FLASH_TOOLS) && defined(USE_FLASHFS)
CLI_COMMAND_DEF("flash_read", NULL, "<length> <address>", cliFlashRead),
CLI_COMMAND_DEF("flash_read", NULL, "<address> <length>", cliFlashRead),
CLI_COMMAND_DEF("flash_scan", "scan flash device for errors", NULL, cliFlashVerify),
CLI_COMMAND_DEF("flash_write", NULL, "<address> <message>", cliFlashWrite),
#endif