target: add Espressif ESP32 basic support
ESP32 is a dual core Xtensa SoC Not full featured yet. Some of the missing functionality: -Semihosting -Flash breakpoints -Flash loader -Apptrace -FreeRTOS Signed-off-by: Erhan Kurubas <erhan.kurubas@espressif.com> Change-Id: I76fb184aa38ab9f4e30290c038b5ff8850060750 Reviewed-on: https://review.openocd.org/c/openocd/+/6989 Tested-by: jenkins Reviewed-by: Ian Thompson <ianst@cadence.com> Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
This commit is contained in:
committed by
Antonio Borneo
parent
52fbb85d2e
commit
77287b8d47
@@ -105,6 +105,7 @@ extern struct target_type hla_target;
|
||||
extern struct target_type nds32_v2_target;
|
||||
extern struct target_type nds32_v3_target;
|
||||
extern struct target_type nds32_v3m_target;
|
||||
extern struct target_type esp32_target;
|
||||
extern struct target_type esp32s2_target;
|
||||
extern struct target_type or1k_target;
|
||||
extern struct target_type quark_x10xx_target;
|
||||
@@ -142,6 +143,7 @@ static struct target_type *target_types[] = {
|
||||
&nds32_v2_target,
|
||||
&nds32_v3_target,
|
||||
&nds32_v3m_target,
|
||||
&esp32_target,
|
||||
&esp32s2_target,
|
||||
&or1k_target,
|
||||
&quark_x10xx_target,
|
||||
@@ -3336,7 +3338,7 @@ COMMAND_HANDLER(handle_soft_reset_halt_command)
|
||||
{
|
||||
struct target *target = get_current_target(CMD_CTX);
|
||||
|
||||
LOG_USER("requesting target halt and executing a soft reset");
|
||||
LOG_TARGET_INFO(target, "requesting target halt and executing a soft reset");
|
||||
|
||||
target_soft_reset_halt(target);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user