stm32l4_exec_command_handlers is only used within OpenOCD.
 
Symbols
loading...
Files
loading...
CodeScopeDevelopment ToolsOpenOCDstm32l4_exec_command_handlers

stm32l4_exec_command_handlers variable

Syntax

static const struct command_registration stm32l4_exec_command_handlers[] = { { .name = "lock", .handler = stm32l4_handle_lock_command, .mode = COMMAND_EXEC, .usage = "bank_id", .help = "Lock entire flash device.", }, { .name = "unlock", .handler = stm32l4_handle_unlock_command, .mode = COMMAND_EXEC, .usage = "bank_id", .help = "Unlock entire protected flash device.", }, { .name = "mass_erase", .handler = stm32l4_handle_mass_erase_command, .mode = COMMAND_EXEC, .usage = "bank_id", .help = "Erase entire flash device.", }, { .name = "option_read", .handler = stm32l4_handle_option_read_command, .mode = COMMAND_EXEC, .usage = "bank_id reg_offset", .help = "Read & Display device option bytes.", }, { .name = "option_write", .handler = stm32l4_handle_option_write_command, .mode = COMMAND_EXEC, .usage = "bank_id reg_offset value [mask]", .help = "Write device option bit fields with provided value.", }, { .name = "trustzone", .handler = stm32l4_handle_trustzone_command, .mode = COMMAND_EXEC, .usage = "<bank_id> [enable|disable]", .help = "Configure TrustZone security", }, { .name = "wrp_info", .handler = stm32l4_handle_wrp_info_command, .mode = COMMAND_EXEC, .usage = "bank_id [bank1|bank2]", .help = "list the protected areas using WRP", }, { .name = "option_load", .handler = stm32l4_handle_option_load_command, .mode = COMMAND_EXEC, .usage = "bank_id", .help = "Force re-load of device options (will cause device reset).", }, { .name = "otp", .handler = stm32l4_handle_otp_command, .mode = COMMAND_EXEC, .usage = "<bank_id> <enable|disable|show>", .help = "OTP (One Time Programmable) memory write enable/disable", }, COMMAND_REGISTRATION_DONE };

References

LocationText
stm32l4x.c:2592
static const struct command_registration stm32l4_exec_command_handlers[] = {
stm32l4x.c:2665
.chain = stm32l4_exec_command_handlers,

Type Use

Type of stm32l4_exec_command_handlers
stm32l4_exec_command_handlers
all items filtered out