From be572c11b6a58afcd4eee4f75eadd574d572c7c9 Mon Sep 17 00:00:00 2001 From: "Alan C. Assis" Date: Wed, 17 Mar 2021 15:01:36 -0300 Subject: [PATCH] lcd/hd4478ou: Fix MIxED case --- include/nuttx/lcd/hd4478ou.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/nuttx/lcd/hd4478ou.h b/include/nuttx/lcd/hd4478ou.h index f04ad1c5571..fb548f61348 100644 --- a/include/nuttx/lcd/hd4478ou.h +++ b/include/nuttx/lcd/hd4478ou.h @@ -52,8 +52,8 @@ # define HD4478OU_SHIFT_DISPLAY (1 << 3) /* Display shift */ # define HD4478OU_SHIFT_CURSOR (0x00) /* Cursor shift */ #define HD4478OU_FUNC (0x23) /* Set DL, display line, font */ -# define HD4478OU_FUNC_F5x10 (1 << 2) /* 5x10 Style */ -# define HD4478OU_FUNC_F5x7 (0x00) /* 5x7 Style */ +# define HD4478OU_FUNC_F5X10 (1 << 2) /* 5x10 Style */ +# define HD4478OU_FUNC_F5X7 (0x00) /* 5x7 Style */ # define HD4478OU_FUNC_N1 (1 << 3) /* N=2R */ # define HD4478OU_FUNC_N0 (0x00) /* N=1R */ # define HD4478OU_FUNC_DL8D (1 << 4) /* DL=8D, 8-bit interface */