Home
last modified time | relevance | path

Searched refs:esp_command_error (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-latest/tools/esptool_py/flasher_stub/include/
Dstub_commands.h24 esp_command_error handle_spi_set_params(uint32_t *args, int *status);
26 esp_command_error handle_spi_attach(uint32_t hspi_config_arg);
28 esp_command_error handle_mem_begin(uint32_t size, uint32_t offset);
30 esp_command_error handle_mem_data(void *data, uint32_t length);
32 esp_command_error handle_mem_finish(void);
41 esp_command_error handle_write_reg(const write_reg_args_t *cmd_buf, uint32_t num_commands);
45 esp_command_error handle_get_security_info(void);
Dstub_write_flash.h15 esp_command_error get_flash_error(void);
17 esp_command_error handle_flash_begin(uint32_t total_size, uint32_t offset);
19 esp_command_error handle_flash_deflated_begin(uint32_t uncompressed_size, uint32_t compressed_size,…
30 esp_command_error handle_flash_end(void);
Dstub_flasher.h110 } esp_command_error; typedef
/hal_espressif-latest/tools/esptool_py/flasher_stub/
Dstub_commands.c176 esp_command_error handle_spi_set_params(uint32_t *args, int *status) in handle_spi_set_params()
182 esp_command_error handle_spi_attach(uint32_t hspi_config_arg) in handle_spi_attach()
212 esp_command_error handle_mem_begin(uint32_t size, uint32_t offset) in handle_mem_begin()
219 esp_command_error handle_mem_data(void *data, uint32_t length) in handle_mem_data()
239 esp_command_error handle_mem_finish() in handle_mem_finish()
241 esp_command_error res = mem_remaining > 0 ? ESP_NOT_ENOUGH_DATA : ESP_OK; in handle_mem_finish()
247 esp_command_error handle_write_reg(const write_reg_args_t *cmds, uint32_t num_commands) in handle_write_reg()
262 esp_command_error handle_get_security_info() in handle_get_security_info()
265 esp_command_error ret; in handle_get_security_info()
Dstub_write_flash.c33 esp_command_error last_error;
52 esp_command_error get_flash_error(void) in get_flash_error()
200 esp_command_error handle_flash_begin(uint32_t total_size, uint32_t offset) { in handle_flash_begin()
225 esp_command_error handle_flash_deflated_begin(uint32_t uncompressed_size, uint32_t compressed_size,… in handle_flash_deflated_begin()
226 esp_command_error err = handle_flash_begin(uncompressed_size, offset); in handle_flash_deflated_begin()
468 esp_command_error handle_flash_end(void) in handle_flash_end()
Dstub_flasher.c170 static esp_command_error verify_data_len(esp_command_req_t *command, uint8_t len) in verify_data_len()
228 esp_command_error error = ESP_CMD_NOT_IMPLEMENTED; in cmd_loop()