This is an automated email from Gerrit. "Daniel DeGrasse <ddegra...@tenstorrent.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8720
-- gerrit commit af8ec8482c1db4e33948e3c625fd73b06038a4b5 Author: Chris Friedt <cfri...@tenstorrent.com> Date: Mon Dec 9 16:11:03 2024 -0500 target/arc: add RTT commands Since RTT is architecture agnostic, add support for using it on the ARC architecture as well. Change-Id: Icd0dec105177a1a224bfb1a63f0be5f03561b166 Signed-off-by: Chris Friedt <cfri...@tenstorrent.com> diff --git a/src/target/arc.h b/src/target/arc.h index a351802ac6..4255840d1f 100644 --- a/src/target/arc.h +++ b/src/target/arc.h @@ -22,6 +22,7 @@ #include "target_request.h" #include "target_type.h" #include "helper/bits.h" +#include "rtt/rtt.h" #include "arc_jtag.h" #include "arc_cmd.h" diff --git a/src/target/arc_cmd.c b/src/target/arc_cmd.c index e7760b0378..bf8a8aa28b 100644 --- a/src/target/arc_cmd.c +++ b/src/target/arc_cmd.c @@ -906,5 +906,8 @@ const struct command_registration arc_monitor_command_handlers[] = { .usage = "", .chain = arc_core_command_handlers, }, + { + .chain = rtt_target_command_handlers, + }, COMMAND_REGISTRATION_DONE }; --