refactor(scale): remove lv_meter use lv_scale instead

This commit is contained in:
Gabor Kiss-Vamosi
2023-10-12 17:21:52 +02:00
parent d975e398d1
commit 6163437afd
36 changed files with 443 additions and 2192 deletions

View File

@@ -104,16 +104,4 @@ void test_chart_one_point_when_setting_point_count_to_zero(void)
TEST_ASSERT_EQUAL(1u, lv_chart_get_point_count(chart));
}
void test_chart_set_zoom_y_to_none_when_factor_is_less_than_256(void)
{
lv_chart_set_zoom_y(chart, 128);
TEST_ASSERT_EQUAL(LV_SCALE_NONE, lv_chart_get_zoom_y(chart));
}
void test_chart_set_zoom_x_to_none_when_factor_is_less_than_256(void)
{
lv_chart_set_zoom_x(chart, 128);
TEST_ASSERT_EQUAL(LV_SCALE_NONE, lv_chart_get_zoom_x(chart));
}
#endif