aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/STM32_EVAL/Common/lcd_log_conf_template.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/STM32_EVAL/Common/lcd_log_conf_template.h')
-rw-r--r--thirdparty/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/STM32_EVAL/Common/lcd_log_conf_template.h113
1 files changed, 113 insertions, 0 deletions
diff --git a/thirdparty/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/STM32_EVAL/Common/lcd_log_conf_template.h b/thirdparty/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/STM32_EVAL/Common/lcd_log_conf_template.h
new file mode 100644
index 0000000..c242be1
--- /dev/null
+++ b/thirdparty/STM32_USB-FS-Device_Lib_V4.0.0/Utilities/STM32_EVAL/Common/lcd_log_conf_template.h
@@ -0,0 +1,113 @@
+/**
+ ******************************************************************************
+ * @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>&copy; 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 "stm32xxx_eval_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
+
+/* Define the LCD default text color */
+#define LCD_LOG_DEFAULT_COLOR LCD_COLOR_WHITE
+
+/* Define the display window settings */
+#define YWINDOW_MIN 3
+#define YWINDOW_SIZE 12
+#define XWINDOW_MAX 50
+
+/* Define the cache depth */
+#define CACHE_SIZE 50
+
+/** @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****/