feat(arc): add float support

This commit is contained in:
Gabor Kiss-Vamosi
2023-10-24 19:17:42 +02:00
parent f273475d28
commit 84c8cf8573
16 changed files with 177 additions and 160 deletions

View File

@@ -154,6 +154,11 @@ LV_EXPORT_CONST_INT(LV_DPI_DEF);
#undef _LV_KCONFIG_PRESENT
#if LV_USE_FLOAT
typedef float lv_value_precise_t;
#else
typedef int32_t lv_value_precise_t;
#endif
/*Set some defines if a dependency is disabled*/
#if LV_USE_LOG == 0