From cb35051e6de79ec8768d45cc864e0ad6df9114c3 Mon Sep 17 00:00:00 2001 From: Nav Date: Thu, 29 Aug 2024 21:21:38 +0100 Subject: [PATCH] Tweak to help text for GDB monitor commands --- src/DebugServer/Gdb/CommandPackets/HelpMonitorInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DebugServer/Gdb/CommandPackets/HelpMonitorInfo.cpp b/src/DebugServer/Gdb/CommandPackets/HelpMonitorInfo.cpp index 573b7a17..886ea37e 100644 --- a/src/DebugServer/Gdb/CommandPackets/HelpMonitorInfo.cpp +++ b/src/DebugServer/Gdb/CommandPackets/HelpMonitorInfo.cpp @@ -117,7 +117,7 @@ namespace DebugServer::Gdb::CommandPackets if (targetDescriptor.family == Targets::TargetFamily::AVR_8) { output += StringService::applyTerminalColor("eeprom fill", CMD_COLOR) + " [" - + StringService::applyTerminalColor("VALUE", PARAM_COLOR) + "]\n\n"; + + StringService::applyTerminalColor("FILL_VALUE_HEX", PARAM_COLOR) + "]\n\n"; output += leftPadding + "Fills the target's EEPROM with the specified value. The value must take the form of a hexadecimal string.\n"; output += leftPadding + "If the specified value is smaller than the EEPROM memory segment size, it will be repeated\n"; output += leftPadding + "across the entire segment address range. If the value size is not a multiple of the segment\n";