kinetis_exec_command_handlers is only used within OpenOCD.
 
Symbols
loading...
Files
loading...
CodeScopeDevelopment ToolsOpenOCDkinetis_exec_command_handlers

kinetis_exec_command_handlers variable

Syntax

static const struct command_registration kinetis_exec_command_handlers[] = { { .name = "mdm", .mode = COMMAND_ANY, .help = "MDM-AP command group", .usage = "", .chain = kinetis_security_command_handlers, }, { .name = "disable_wdog", .mode = COMMAND_EXEC, .help = "Disable the watchdog timer", .usage = "", .handler = kinetis_disable_wdog_handler, }, { .name = "nvm_partition", .mode = COMMAND_EXEC, .help = "Show/set data flash or EEPROM backup size in kilobytes," " set two EEPROM sizes in bytes and FlexRAM loading during reset", .usage = "('info'|'dataflash' size|'eebkp' size) [eesize1 eesize2] ['on'|'off']", .handler = kinetis_nvm_partition, }, { .name = "fcf_source", .mode = COMMAND_EXEC, .help = "Use protection as a source for Flash Configuration Field or allow writing arbitrary values to the FCF" " Mode 'protection' is safe from unwanted locking of the device.", .usage = "['protection'|'write']", .handler = kinetis_fcf_source_handler, }, { .name = "fopt", .mode = COMMAND_EXEC, .help = "FCF_FOPT value source in 'kinetis fcf_source protection' mode", .usage = "[num]", .handler = kinetis_fopt_handler, }, { .name = "create_banks", .mode = COMMAND_CONFIG, .help = "Driver creates additional banks if device with two/four flash blocks is probed", .handler = kinetis_create_banks_handler, .usage = "", }, COMMAND_REGISTRATION_DONE };

References

LocationText
kinetis.c:3375
static const struct command_registration kinetis_exec_command_handlers[] = {
kinetis.c:3429
.chain = kinetis_exec_command_handlers,

Type Use

Type of kinetis_exec_command_handlers
kinetis_exec_command_handlers
all items filtered out