ref: 5e12e58afed7bcda732d379db10d684370a6687a
dir: /demos/stm32f429_disco/stm/lcd_utils/lcd_log_conf.h/
/** ****************************************************************************** * @file lcd_log_conf_template.h * @author MCD Application Team * @version V5.0.2 * @date 05-March-2012 * @brief lcd_log configuration template file. * This file should be copied to the application folder and modified * as follows: * - Rename it to 'lcd_log_conf.h'. * - Update the name of the LCD header file depending on the EVAL board * you are using (see line32 below). ****************************************************************************** * @attention * * <h2><center>© COPYRIGHT 2012 STMicroelectronics</center></h2> * * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.st.com/software_license_agreement_liberty_v2 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __LCD_LOG_CONF_H__ #define __LCD_LOG_CONF_H__ /* Includes ------------------------------------------------------------------*/ #include "stm32f429i_discovery_lcd.h" /* replace 'stm32xxx' with your EVAL board name, ex: stm3210c_eval_lcd.h */ #include <stdio.h> /** @addtogroup LCD_LOG * @{ */ /** @defgroup LCD_LOG * @brief This file is the * @{ */ /** @defgroup LCD_LOG_CONF_Exported_Defines * @{ */ /* Comment the line below to disable the scroll back and forward features */ #define LCD_SCROLL_ENABLED 1 /* Define the Fonts */ #define LCD_LOG_HEADER_FONT Font16 #define LCD_LOG_FOOTER_FONT Font12 #define LCD_LOG_TEXT_FONT Font12 /* Define the LCD LOG Color */ #define LCD_LOG_BACKGROUND_COLOR LCD_COLOR_BLACK #define LCD_LOG_TEXT_COLOR LCD_COLOR_GREEN #define LCD_LOG_SOLID_BACKGROUND_COLOR LCD_COLOR_BLUE #define LCD_LOG_SOLID_TEXT_COLOR LCD_COLOR_WHITE /* Define the cache depth */ #define CACHE_SIZE 100 #define YWINDOW_SIZE 22 #ifdef __GNUC__ /* With GCC/RAISONANCE, small printf (option LD Linker->Libraries->Small printf set to 'Yes') calls __io_putchar() */ int __io_putchar(int ch); #define LCD_LOG_PUTCHAR int __io_putchar(int ch) #else #define LCD_LOG_PUTCHAR int fputc(int ch, FILE *f) #endif /* __GNUC__ */ /** @defgroup LCD_LOG_CONF_Exported_TypesDefinitions * @{ */ /** * @} */ /** @defgroup LCD_LOG_Exported_Macros * @{ */ /** * @} */ /** @defgroup LCD_LOG_CONF_Exported_Variables * @{ */ /** * @} */ /** @defgroup LCD_LOG_CONF_Exported_FunctionsPrototype * @{ */ /** * @} */ #endif /* __LCD_LOG_H__ */ /** * @} */ /** * @} */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/