LV_VERSION_CHECK macro
DEFINES TYPEDEFS GLOBAL PROTOTYPES MACROS Gives 1 if the x.y.z version is supported in the current version Usage: - Require v6 #if LV_VERSION_CHECK(6,0,0) new_func_in_v6(); #endif - Require at least v5.3 #if LV_VERSION_CHECK(5,3,0) new_feature_from_v5_3(); #endif - Require v5.3.2 bugfixes #if LV_VERSION_CHECK(5,3,2) bugfix_in_v5_3_2(); #endif