From 9d8ef7382a1ef9d4c6900b6734cd44ffc83fa096 Mon Sep 17 00:00:00 2001 From: Meco Man <920369182@qq.com> Date: Wed, 20 Oct 2021 21:19:27 -0400 Subject: [PATCH] [stm32l475] add BSP_USING_LCD_SAMPLE in rttlogo.h --- bsp/stm32/stm32l475-atk-pandora/applications/rttlogo.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bsp/stm32/stm32l475-atk-pandora/applications/rttlogo.h b/bsp/stm32/stm32l475-atk-pandora/applications/rttlogo.h index 752703417d..21c07b734d 100644 --- a/bsp/stm32/stm32l475-atk-pandora/applications/rttlogo.h +++ b/bsp/stm32/stm32l475-atk-pandora/applications/rttlogo.h @@ -1,3 +1,10 @@ +#ifndef RTTLOGO_H_ +#define RTTLOGO_H_ + +#include + +#ifdef BSP_USING_LCD_SAMPLE + const unsigned char image_rttlogo[] = { /* 0X10,0X10,0X00,0XF0,0X00,0X45,0X01,0X1B, */ 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, @@ -2070,3 +2077,6 @@ const unsigned char image_rttlogo[] = { /* 0X10,0X10,0X00,0XF0,0X00,0X45,0X01,0X 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, 0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF,0XFF, }; + +#endif +#endif