From fb8c81c9f2f955906ffff6754d10c6f3072bb0ed Mon Sep 17 00:00:00 2001 From: anguoyoula <755708445@qq.com> Date: Wed, 6 Mar 2024 13:45:33 +0800 Subject: [PATCH] fix bug about the letter shell can`t be used in board rzg2ul --- Ubiquitous/XiZi_IIoT/tool/shell/letter-shell/shell_port.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ubiquitous/XiZi_IIoT/tool/shell/letter-shell/shell_port.c b/Ubiquitous/XiZi_IIoT/tool/shell/letter-shell/shell_port.c index 81cb349e8..f867d4bc9 100644 --- a/Ubiquitous/XiZi_IIoT/tool/shell/letter-shell/shell_port.c +++ b/Ubiquitous/XiZi_IIoT/tool/shell/letter-shell/shell_port.c @@ -21,7 +21,7 @@ #include "xsconfig.h" #include -#ifdef BOARD_RZV2L_M33 +#if defined(BOARD_RZV2L_M33) || defined(BOARD_RZG2UL_M33) #include #endif @@ -119,7 +119,7 @@ int userShellInit(void) shell.write = userShellWrite; shell.read = userShellRead; -#ifdef BOARD_RZV2L_M33 +#if defined(BOARD_RZV2L_M33) || defined(BOARD_RZG2UL_M33) #else console = ObtainConsole();