From 60f11b22e2fbdf29a8438bc30987301f14cabca9 Mon Sep 17 00:00:00 2001 From: Ligen Date: Tue, 15 Jul 2025 11:15:50 +0800 Subject: [PATCH] Updates calibration instructions to reference goggle antenna Clarifies calibration steps by replacing "BoxPro antenna" with "goggle antenna" for consistency and accuracy in user instructions. Improves user understanding during RSSI calibration. --- src/ui/page_analog_rssi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/page_analog_rssi.c b/src/ui/page_analog_rssi.c index 9707c291..791a9221 100644 --- a/src/ui/page_analog_rssi.c +++ b/src/ui/page_analog_rssi.c @@ -69,12 +69,12 @@ static lv_obj_t *page_analog_rssi_create(lv_obj_t *parent, panel_arr_t *arr) { lv_obj_t *note = lv_label_create(cont); snprintf(buf, sizeof(buf), "%s:\n -%s\n -%s\n%s:\n -%s\n -%s\n -%s", _lang("Before calibrating RSSI min"), - _lang("Remove the BoxPro antenna"), + _lang("Remove the goggle antenna"), _lang("Turn off all VTX"), _lang("Before calibrating RSSI max"), - _lang("Remove the BoxPro antenna"), + _lang("Remove the goggle antenna"), _lang("Turn on the analog VTX to R1 25mw"), - _lang("Place the VTX 2 meters away from the BoxPro")); + _lang("Place the VTX 2 meters away from the goggle")); lv_label_set_text(note, buf); lv_obj_set_style_text_font(note, &lv_font_montserrat_16, 0);