From 91534a8488db13ac1a91aba459493ccfd7309392 Mon Sep 17 00:00:00 2001 From: Erhan Kurubas Date: Fri, 7 Aug 2026 14:38:32 +0200 Subject: [PATCH] fix(soc): correct mem_start_addr typo in H2/H21 trace header --- components/soc/esp32h2/register/soc/trace_struct.h | 4 ++-- components/soc/esp32h21/register/soc/trace_struct.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/soc/esp32h2/register/soc/trace_struct.h b/components/soc/esp32h2/register/soc/trace_struct.h index 0fe90d85025..6feffc6ab5a 100644 --- a/components/soc/esp32h2/register/soc/trace_struct.h +++ b/components/soc/esp32h2/register/soc/trace_struct.h @@ -16,10 +16,10 @@ extern "C" { */ typedef union { struct { - /** mem_staet_addr : R/W; bitpos: [31:0]; default: 0; + /** mem_start_addr : R/W; bitpos: [31:0]; default: 0; * The start address of trace memory */ - uint32_t mem_staet_addr:32; + uint32_t mem_start_addr:32; }; uint32_t val; } trace_mem_start_addr_reg_t; diff --git a/components/soc/esp32h21/register/soc/trace_struct.h b/components/soc/esp32h21/register/soc/trace_struct.h index 0fe90d85025..6feffc6ab5a 100644 --- a/components/soc/esp32h21/register/soc/trace_struct.h +++ b/components/soc/esp32h21/register/soc/trace_struct.h @@ -16,10 +16,10 @@ extern "C" { */ typedef union { struct { - /** mem_staet_addr : R/W; bitpos: [31:0]; default: 0; + /** mem_start_addr : R/W; bitpos: [31:0]; default: 0; * The start address of trace memory */ - uint32_t mem_staet_addr:32; + uint32_t mem_start_addr:32; }; uint32_t val; } trace_mem_start_addr_reg_t;