same5_exec_command_handlers is only used within OpenOCD.
 
Symbols
loading...
Files
loading...
CodeScopeDevelopment ToolsOpenOCDsame5_exec_command_handlers

same5_exec_command_handlers variable

Syntax

static const struct command_registration same5_exec_command_handlers[] = { { .name = "dsu_reset_deassert", .usage = "", .handler = samd_handle_reset_deassert, .mode = COMMAND_EXEC, .help = "Deassert internal reset held by DSU." }, { .name = "chip-erase", .usage = "", .handler = same5_handle_chip_erase_command, .mode = COMMAND_EXEC, .help = "Erase the entire Flash by using the Chip-" "Erase feature in the Device Service Unit (DSU).", }, { .name = "bootloader", .usage = "[size_in_bytes]", .handler = same5_handle_bootloader_command, .mode = COMMAND_EXEC, .help = "Show or set the bootloader protection size, stored in the User Row. " "Changes are stored immediately but take affect after the MCU is " "reset.", }, { .name = "userpage", .usage = "[value] [mask]", .handler = same5_handle_userpage_command, .mode = COMMAND_EXEC, .help = "Show or set the first 64-bit part of user page " "located at address 0x804000. Use the optional mask argument " "to prevent changes at positions where the bitvalue is zero. " "For security reasons the reserved-bits are masked out " "in background and therefore cannot be changed.", }, COMMAND_REGISTRATION_DONE };

References

LocationText
atsame5.c:900
static const struct command_registration same5_exec_command_handlers[] = {
atsame5.c:945
.chain = same5_exec_command_handlers,

Type Use

Type of same5_exec_command_handlers
same5_exec_command_handlers
all items filtered out