stm32x_exec_command_handlers is only used within OpenOCD.
 
Symbols
loading...
Files
loading...
CodeScopeDevelopment ToolsOpenOCDstm32x_exec_command_handlers

stm32x_exec_command_handlers variable

Syntax

static const struct command_registration stm32x_exec_command_handlers[] = { { .name = "lock", .handler = stm32x_handle_lock_command, .mode = COMMAND_EXEC, .usage = "bank_id", .help = "Lock entire flash device.", }, { .name = "unlock", .handler = stm32x_handle_unlock_command, .mode = COMMAND_EXEC, .usage = "bank_id", .help = "Unlock entire protected flash device.", }, { .name = "mass_erase", .handler = stm32x_handle_mass_erase_command, .mode = COMMAND_EXEC, .usage = "bank_id", .help = "Erase entire flash device.", }, { .name = "options_read", .handler = stm32x_handle_options_read_command, .mode = COMMAND_EXEC, .usage = "bank_id", .help = "Read and display device option bytes.", }, { .name = "options_write", .handler = stm32x_handle_options_write_command, .mode = COMMAND_EXEC, .usage = "bank_id ('SWWDG'|'HWWDG') " "('RSTSTNDBY'|'NORSTSTNDBY') " "('RSTSTOP'|'NORSTSTOP') ('USEROPT' user_data)", .help = "Replace bits in device option bytes.", }, { .name = "options_load", .handler = stm32x_handle_options_load_command, .mode = COMMAND_EXEC, .usage = "bank_id", .help = "Force re-load of device option bytes.", }, COMMAND_REGISTRATION_DONE };

References

LocationText
stm32g0x.c:1211
static const struct command_registration stm32x_exec_command_handlers[] = {
stm32g0x.c:1265
.chain = stm32x_exec_command_handlers,

Type Use

Type of stm32x_exec_command_handlers
stm32x_exec_command_handlers
all items filtered out