From c9f165f9a96177276ce3feda5867e3b6ab6645bd Mon Sep 17 00:00:00 2001 From: Nav Date: Sat, 10 Dec 2022 19:47:42 +0000 Subject: [PATCH] Added description of new `eeprom fill` monitor command to GDB help text --- src/DebugServer/Gdb/Resources/GdbHelpMonitorInfo.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/DebugServer/Gdb/Resources/GdbHelpMonitorInfo.txt b/src/DebugServer/Gdb/Resources/GdbHelpMonitorInfo.txt index 0964a5fd..c4262597 100644 --- a/src/DebugServer/Gdb/Resources/GdbHelpMonitorInfo.txt +++ b/src/DebugServer/Gdb/Resources/GdbHelpMonitorInfo.txt @@ -10,3 +10,9 @@ Supported Bloom commands: command output. reset Resets the target and holds it in a stopped state. + + eeprom fill Fills the target's EEPROM with a specified value. The value should be specified via the + --value option. The value should be in hexadecimal format: "--value=AABBCC". If the specified + value is smaller than the EEPROM capacity, it will be repeated across the entire EEPROM address + range. If the value size is not a multiple of the EEPROM capacity, the value will be truncated + in the final repetition. The value size must not exceed the EEPROM capacity.