From 6c3ca23dbf06fea9d3d1c91d40c48e4bb06c16dd Mon Sep 17 00:00:00 2001 From: Eren Terzioglu Date: Wed, 30 Oct 2024 13:44:19 +0100 Subject: [PATCH] system/debugpoint: Fix RO watchpoint test issue for esp devices --- system/debugpoint/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/debugpoint/debug.c b/system/debugpoint/debug.c index 06341ad782..b4f951ec46 100644 --- a/system/debugpoint/debug.c +++ b/system/debugpoint/debug.c @@ -38,7 +38,7 @@ ****************************************************************************/ static uint8_t g_test_data[8]; -static const char g_test_rodata[] = "This is a read-only string"; +static const char g_test_rodata[32] = "This is a read-only string"; /**************************************************************************** * Name: debug_option