|
@@ -169,9 +169,9 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
if (in_power_unit_label)
|
|
|
{
|
|
|
lv_obj_set_style_text_font(in_power_unit_label, aem_font_sub(), 0);
|
|
|
- text_canvas_set_text(in_power_unit_label, "mW");
|
|
|
+ text_canvas_set_text(in_power_unit_label, "W");
|
|
|
lv_obj_set_style_text_color(in_power_unit_label, (lv_color_t)LV_COLOR_BLACK, 0);
|
|
|
- lv_obj_align(in_power_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(45), AEM_SIZE_VER_FACTOR_466(18));
|
|
|
+ lv_obj_align(in_power_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(50), AEM_SIZE_VER_FACTOR_466(18));
|
|
|
}
|
|
|
|
|
|
lv_obj_t *in_voltage_unit_label = text_canvas_create(in_voltage_item);
|
|
@@ -180,29 +180,29 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
lv_obj_set_style_text_font(in_voltage_unit_label, aem_font_small(), 0);
|
|
|
text_canvas_set_text(in_voltage_unit_label, "V");
|
|
|
lv_obj_set_style_text_color(in_voltage_unit_label, (lv_color_t)LV_COLOR_BLUE, 0);
|
|
|
- lv_obj_align(in_voltage_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(10), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
+ lv_obj_align(in_voltage_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(20), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
}
|
|
|
|
|
|
lv_obj_t *in_current_unit_label = text_canvas_create(in_current_item);
|
|
|
if (in_current_unit_label)
|
|
|
{
|
|
|
lv_obj_set_style_text_font(in_current_unit_label, aem_font_small(), 0);
|
|
|
- text_canvas_set_text(in_current_unit_label, "mA");
|
|
|
+ text_canvas_set_text(in_current_unit_label, "A");
|
|
|
lv_obj_set_style_text_color(in_current_unit_label, (lv_color_t)LV_COLOR_BLUE, 0);
|
|
|
- lv_obj_align(in_current_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(15), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
+ lv_obj_align(in_current_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(20), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
}
|
|
|
|
|
|
lv_obj_align(out_power_item, LV_ALIGN_RIGHT_MID, AEM_SIZE_HOR_FACTOR_466(-10), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
- lv_obj_align_to(out_voltage_item, out_power_item, LV_ALIGN_OUT_BOTTOM_MID, AEM_SIZE_HOR_FACTOR_466(5), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
+ lv_obj_align_to(out_voltage_item, out_power_item, LV_ALIGN_OUT_BOTTOM_MID, AEM_SIZE_HOR_FACTOR_466(0), AEM_SIZE_VER_FACTOR_466(0));
|
|
|
lv_obj_align_to(out_current_item, out_voltage_item, LV_ALIGN_OUT_BOTTOM_MID, 0, 0);
|
|
|
|
|
|
lv_obj_t *out_power_unit_label = text_canvas_create(out_power_item);
|
|
|
if (out_power_unit_label)
|
|
|
{
|
|
|
lv_obj_set_style_text_font(out_power_unit_label, aem_font_sub(), 0);
|
|
|
- text_canvas_set_text(out_power_unit_label, "mW");
|
|
|
+ text_canvas_set_text(out_power_unit_label, "W");
|
|
|
lv_obj_set_style_text_color(out_power_unit_label, (lv_color_t)LV_COLOR_BLACK, 0);
|
|
|
- lv_obj_align(out_power_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(45), AEM_SIZE_VER_FACTOR_466(18));
|
|
|
+ lv_obj_align(out_power_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(50), AEM_SIZE_VER_FACTOR_466(18));
|
|
|
}
|
|
|
|
|
|
lv_obj_t *out_voltage_unit_label = text_canvas_create(out_voltage_item);
|
|
@@ -211,16 +211,16 @@ static lv_obj_t *aem_in_out_power_arc_show_create(lv_obj_t *par)
|
|
|
lv_obj_set_style_text_font(out_voltage_unit_label, aem_font_small(), 0);
|
|
|
text_canvas_set_text(out_voltage_unit_label, "V");
|
|
|
lv_obj_set_style_text_color(out_voltage_unit_label, (lv_color_t)LV_COLOR_GREEN, 0);
|
|
|
- lv_obj_align(out_voltage_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(10), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
+ lv_obj_align(out_voltage_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(20), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
}
|
|
|
|
|
|
lv_obj_t *out_current_unit_label = text_canvas_create(out_current_item);
|
|
|
if (out_current_unit_label)
|
|
|
{
|
|
|
lv_obj_set_style_text_font(out_current_unit_label, aem_font_small(), 0);
|
|
|
- text_canvas_set_text(out_current_unit_label, "mA");
|
|
|
+ text_canvas_set_text(out_current_unit_label, "A");
|
|
|
lv_obj_set_style_text_color(out_current_unit_label, (lv_color_t)LV_COLOR_GREEN, 0);
|
|
|
- lv_obj_align(out_current_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(15), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
+ lv_obj_align(out_current_unit_label, LV_ALIGN_TOP_MID, AEM_SIZE_HOR_FACTOR_466(20), AEM_SIZE_VER_FACTOR_466(15));
|
|
|
}
|
|
|
|
|
|
// Arcs
|
|
@@ -311,9 +311,8 @@ void aem_in_out_power_screen_del(lv_obj_t *par)
|
|
|
lv_obj_set_user_data(par, NULL);
|
|
|
}
|
|
|
}
|
|
|
-#define RELEASE_FW_EN 1
|
|
|
|
|
|
-#if RELEASE_FW_EN
|
|
|
+#ifndef CONFIG_SIMULATOR
|
|
|
extern float f_BusVoltage[2];
|
|
|
extern float f_Power[2];
|
|
|
extern float f_Current[2];
|
|
@@ -322,7 +321,7 @@ void aem_in_out_power_screen_update(lv_obj_t *par)
|
|
|
{
|
|
|
in_out_power_scr_ui_data_t *power_volt_cur_data = lv_obj_get_user_data(par);
|
|
|
|
|
|
-#if (RELEASE_FW_EN == 0)
|
|
|
+#ifdef CONFIG_SIMULATOR
|
|
|
float f_Power[2] = {10.0, 12.0};
|
|
|
float f_BusVoltage[2] = {5.00, 4.00};
|
|
|
float f_Current[2] = {2.00, 3.00};
|
|
@@ -334,27 +333,62 @@ void aem_in_out_power_screen_update(lv_obj_t *par)
|
|
|
|
|
|
//if (power_volt_cur_data->in_power_value)
|
|
|
{
|
|
|
- sprintf(str_data, "%05.2f", f_Power[1]);
|
|
|
- text_canvas_set_text(power_volt_cur_data->in_power_value, str_data);
|
|
|
+ if (f_Power[1] < 0.08)
|
|
|
+ {
|
|
|
+ sprintf(str_data, "%6.3f", f_Power[0]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->in_power_value, str_data);
|
|
|
+
|
|
|
+ sprintf(str_data, "%6.3f", f_Power[1]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->out_power_value, str_data);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ sprintf(str_data, "%6.3f", f_Power[1]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->in_power_value, str_data);
|
|
|
+
|
|
|
+ sprintf(str_data, "%6.3f", f_Power[0]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->out_power_value, str_data);
|
|
|
+ }
|
|
|
|
|
|
- sprintf(str_data, "%05.2f", f_Power[0]);
|
|
|
- text_canvas_set_text(power_volt_cur_data->out_power_value, str_data);
|
|
|
}
|
|
|
//if (power_volt_cur_data->in_voltage_value)
|
|
|
{
|
|
|
- sprintf(str_data, "%05.2f", f_BusVoltage[1]);
|
|
|
- text_canvas_set_text(power_volt_cur_data->in_voltage_value, str_data);
|
|
|
+ if (f_BusVoltage[1] < 2.5)
|
|
|
+ {
|
|
|
+ sprintf(str_data, "%6.3f", f_BusVoltage[0]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->in_voltage_value, str_data);
|
|
|
+
|
|
|
+ sprintf(str_data, "%6.3f", f_BusVoltage[1]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->out_voltage_value, str_data);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ sprintf(str_data, "%6.3f", f_BusVoltage[1]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->in_voltage_value, str_data);
|
|
|
+
|
|
|
+ sprintf(str_data, "%6.3f", f_BusVoltage[0]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->out_voltage_value, str_data);
|
|
|
+ }
|
|
|
|
|
|
- sprintf(str_data, "%05.2f", f_BusVoltage[0]);
|
|
|
- text_canvas_set_text(power_volt_cur_data->out_voltage_value, str_data);
|
|
|
}
|
|
|
//if (power_volt_cur_data->in_current_value)
|
|
|
{
|
|
|
- sprintf(str_data, "%05.2f", f_Current[1]);
|
|
|
- text_canvas_set_text(power_volt_cur_data->in_current_value, str_data);
|
|
|
+ if (f_Current[1] < 0.05)
|
|
|
+ {
|
|
|
+ sprintf(str_data, "%6.3f", f_Current[0]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->in_current_value, str_data);
|
|
|
+
|
|
|
+ sprintf(str_data, "%6.3f", f_Current[1]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->out_current_value, str_data);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ sprintf(str_data, "%6.3f", f_Current[1]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->in_current_value, str_data);
|
|
|
|
|
|
- sprintf(str_data, "%05.2f", f_Current[0]);
|
|
|
- text_canvas_set_text(power_volt_cur_data->out_current_value, str_data);
|
|
|
+ sprintf(str_data, "%6.3f", f_Current[0]);
|
|
|
+ text_canvas_set_text(power_volt_cur_data->out_current_value, str_data);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|