20 lines
420 B
C
20 lines
420 B
C
#ifndef LV_CONF_H
|
|
#define LV_CONF_H
|
|
|
|
#define LV_DEF_REFR_PERIOD 16
|
|
#define LV_COLOR_DEPTH 16
|
|
#define LV_USE_OS 0
|
|
|
|
#define LV_MEM_SIZE (256U * 1024U)
|
|
|
|
#define LV_USE_LOG 1
|
|
//#define LV_LOG_LEVEL LV_LOG_LEVEL_TRACE
|
|
//#define LV_LOG_PRINTF 1
|
|
|
|
#define LV_USE_ASSERT_NULL 1
|
|
|
|
#define LV_USE_STDLIB_MALLOC LV_STDLIB_BUILTIN
|
|
#define LV_USE_STDLIB_STRING LV_STDLIB_BUILTIN
|
|
#define LV_USE_STDLIB_SPRINTF LV_STDLIB_BUILTIN
|
|
|
|
#endif
|