From b4ae16b0112ed9e0e57e8fb78c09fe8fe8f014b4 Mon Sep 17 00:00:00 2001 From: Scheiffler Date: Fri, 13 Oct 2023 14:23:01 -0500 Subject: [PATCH] Resolve linter errors --- Examples/MAX32670/Flash_CLI/definitions.h | 38 +++++++++++------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/Examples/MAX32670/Flash_CLI/definitions.h b/Examples/MAX32670/Flash_CLI/definitions.h index 5173fd85fce..48ae104a5e1 100644 --- a/Examples/MAX32670/Flash_CLI/definitions.h +++ b/Examples/MAX32670/Flash_CLI/definitions.h @@ -34,25 +34,25 @@ // CLI command table // clang-format off #define CMD_TABLE { { "write", \ - "write ", \ - "Writes text string to flash starting at the 32-bit word in the\n" \ - " flash page specified by \"word offset\" (e.g. word offset=3 -> address\n" \ - " offset=0xC, word offset=4 -> address offset=0x10)", \ - handle_write }, \ - { "erase", \ - "erase", \ - "Erases page in flash being operated on", \ - handle_erase }, \ - { "read", \ - "read ", \ - "Reads text from flash starting at the 32-bit word in the flash\n" \ - " page specified by \"word offset\" (e.g. word offset=3 -> address offset=0xC,\n" \ - " word offset=4 -> address offset=0x10)", \ - handle_read }, \ - { "crc", \ - "crc", \ - "Calculates CRC of entire flash page", \ - handle_crc } } + "write ", \ + "Writes text string to flash starting at the 32-bit word in the\n" \ + " flash page specified by \"word offset\" (e.g. word offset=3 -> address\n" \ + " offset=0xC, word offset=4 -> address offset=0x10)", \ + handle_write }, \ + { "erase", \ + "erase", \ + "Erases page in flash being operated on", \ + handle_erase }, \ + { "read", \ + "read ", \ + "Reads text from flash starting at the 32-bit word in the flash\n" \ + " page specified by \"word offset\" (e.g. word offset=3 -> address offset=0xC,\n" \ + " word offset=4 -> address offset=0x10)", \ + handle_read }, \ + { "crc", \ + "crc", \ + "Calculates CRC of entire flash page", \ + handle_crc } } // clang-format on #define WORD_OFFSET_POS 1