1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

fix(docbuild): reformat comments for Doxygen in lv_conf_template.h (#6673)

This commit is contained in:
Victor Wheeler 2024-08-29 14:10:34 -06:00 committed by GitHub
parent ba3ef34600
commit 5bfbf0c10d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 918 additions and 862 deletions

View File

@ -1,4 +1,4 @@
/** /**
* @file lv_conf.h * @file lv_conf.h
* Configuration file for v9.0.0-dev * Configuration file for v9.0.0-dev
*/ */

File diff suppressed because it is too large Load Diff

View File

@ -23,14 +23,14 @@ fout.write(
'''/** '''/**
* GENERATED FILE, DO NOT EDIT IT! * GENERATED FILE, DO NOT EDIT IT!
* @file lv_conf_internal.h * @file lv_conf_internal.h
* Make sure all the defines of lv_conf.h have a default value * This file ensures all defines of lv_conf.h have a default value.
**/ */
#ifndef LV_CONF_INTERNAL_H #ifndef LV_CONF_INTERNAL_H
#define LV_CONF_INTERNAL_H #define LV_CONF_INTERNAL_H
/* clang-format off */ /* clang-format off */
/*Config options*/ /* Config options */
#define LV_OS_NONE 0 #define LV_OS_NONE 0
#define LV_OS_PTHREAD 1 #define LV_OS_PTHREAD 1
#define LV_OS_FREERTOS 2 #define LV_OS_FREERTOS 2
@ -51,7 +51,7 @@ fout.write(
#define LV_DRAW_SW_ASM_HELIUM 2 #define LV_DRAW_SW_ASM_HELIUM 2
#define LV_DRAW_SW_ASM_CUSTOM 255 #define LV_DRAW_SW_ASM_CUSTOM 255
/* Handle special Kconfig options */ /** Handle special Kconfig options. */
#ifndef LV_KCONFIG_IGNORE #ifndef LV_KCONFIG_IGNORE
#include "lv_conf_kconfig.h" #include "lv_conf_kconfig.h"
#ifdef CONFIG_LV_CONF_SKIP #ifdef CONFIG_LV_CONF_SKIP
@ -59,7 +59,7 @@ fout.write(
#endif #endif
#endif #endif
/*If "lv_conf.h" is available from here try to use it later.*/ /* If "lv_conf.h" is available from here try to use it later. */
#ifdef __has_include #ifdef __has_include
#if __has_include("lv_conf.h") #if __has_include("lv_conf.h")
#ifndef LV_CONF_INCLUDE_SIMPLE #ifndef LV_CONF_INCLUDE_SIMPLE
@ -68,18 +68,18 @@ fout.write(
#endif #endif
#endif #endif
/*If lv_conf.h is not skipped include it*/ /* If lv_conf.h is not skipped, include it. */
#if !defined(LV_CONF_SKIP) || defined(LV_CONF_PATH) #if !defined(LV_CONF_SKIP) || defined(LV_CONF_PATH)
#ifdef LV_CONF_PATH /*If there is a path defined for lv_conf.h use it*/ #ifdef LV_CONF_PATH /* If there is a path defined for lv_conf.h, use it */
#define __LV_TO_STR_AUX(x) #x #define __LV_TO_STR_AUX(x) #x
#define __LV_TO_STR(x) __LV_TO_STR_AUX(x) #define __LV_TO_STR(x) __LV_TO_STR_AUX(x)
#include __LV_TO_STR(LV_CONF_PATH) #include __LV_TO_STR(LV_CONF_PATH)
#undef __LV_TO_STR_AUX #undef __LV_TO_STR_AUX
#undef __LV_TO_STR #undef __LV_TO_STR
#elif defined(LV_CONF_INCLUDE_SIMPLE) /*Or simply include lv_conf.h is enabled*/ #elif defined(LV_CONF_INCLUDE_SIMPLE) /* Or simply include lv_conf.h is enabled. */
#include "lv_conf.h" #include "lv_conf.h"
#else #else
#include "../../lv_conf.h" /*Else assume lv_conf.h is next to the lvgl folder*/ #include "../../lv_conf.h" /* Else assume lv_conf.h is next to the lvgl folder. */
#endif #endif
#if !defined(LV_CONF_H) && !defined(LV_CONF_SUPPRESS_DEFINE_CHECK) #if !defined(LV_CONF_H) && !defined(LV_CONF_SUPPRESS_DEFINE_CHECK)
/* #include will sometimes silently fail when __has_include is used */ /* #include will sometimes silently fail when __has_include is used */
@ -177,7 +177,7 @@ LV_EXPORT_CONST_INT(LV_DRAW_BUF_ALIGN);
#undef LV_KCONFIG_PRESENT #undef LV_KCONFIG_PRESENT
/*Set some defines if a dependency is disabled*/ /* Set some defines if a dependency is disabled. */
#if LV_USE_LOG == 0 #if LV_USE_LOG == 0
#define LV_LOG_LEVEL LV_LOG_LEVEL_NONE #define LV_LOG_LEVEL LV_LOG_LEVEL_NONE
#define LV_LOG_TRACE_MEM 0 #define LV_LOG_TRACE_MEM 0
@ -214,7 +214,7 @@ LV_EXPORT_CONST_INT(LV_DRAW_BUF_ALIGN);
#endif #endif
#endif #endif
/*If running without lv_conf.h add typedefs with default value*/ /* If running without lv_conf.h, add typedefs with default value. */
#ifdef LV_CONF_SKIP #ifdef LV_CONF_SKIP
#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) /*Disable warnings for Visual Studio*/ #if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) /*Disable warnings for Visual Studio*/
#define _CRT_SECURE_NO_WARNINGS #define _CRT_SECURE_NO_WARNINGS

File diff suppressed because it is too large Load Diff