From 57e8ec91a2e37b498949799c2ac8ca8a29a60968 Mon Sep 17 00:00:00 2001 From: windows Date: Wed, 22 Nov 2023 23:07:31 +0800 Subject: [PATCH 1/2] [bsp][imx6ul] Code update. There lacks these two macros. Signed-off-by: windows --- bsp/imx6ul/rtconfig.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bsp/imx6ul/rtconfig.h b/bsp/imx6ul/rtconfig.h index e71a36b7c5..600d552144 100644 --- a/bsp/imx6ul/rtconfig.h +++ b/bsp/imx6ul/rtconfig.h @@ -9,6 +9,7 @@ /* RT-Thread Kernel */ #define RT_NAME_MAX 8 +#define RT_CPUS_NR 1 #define RT_ALIGN_SIZE 8 #define RT_THREAD_PRIORITY_32 #define RT_THREAD_PRIORITY_MAX 32 @@ -49,6 +50,7 @@ #define RT_CONSOLEBUF_SIZE 128 #define RT_CONSOLE_DEVICE_NAME "uart1" #define RT_VER_NUM 0x50002 +#define RT_BACKTRACE_LEVEL_MAX_NR 32 #define RT_USING_CACHE #define RT_USING_HW_ATOMIC #define RT_USING_CPU_FFS -- Gitee From 5eb16da04be71d809b03871bc63c3c0cffd6f6cc Mon Sep 17 00:00:00 2001 From: windows Date: Wed, 22 Nov 2023 23:09:28 +0800 Subject: [PATCH 2/2] [update] Suitable to gtags. Signed-off-by: windows --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 558b09f1e4..87595dcd32 100644 --- a/.gitignore +++ b/.gitignore @@ -43,6 +43,11 @@ ncscope.* #ctag files tags +#gtag files +GPATH +GRTAGS +GTAGS + .idea .vscode *.code-workspace -- Gitee