From 7f371da960e166e93e7db73b485f7aeff8dd73c6 Mon Sep 17 00:00:00 2001 From: Takiiiiiiii <43725718+Takiiiiiiii@users.noreply.github.com> Date: Tue, 11 Mar 2025 14:18:02 +0800 Subject: [PATCH] Update gui_info.c --- nyx/nyx_gui/frontend/gui_info.c | 48 +++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/nyx/nyx_gui/frontend/gui_info.c b/nyx/nyx_gui/frontend/gui_info.c index bcb65ef..af34da7 100644 --- a/nyx/nyx_gui/frontend/gui_info.c +++ b/nyx/nyx_gui/frontend/gui_info.c @@ -814,6 +814,54 @@ static lv_res_t _create_window_fuses_info_status(lv_obj_t *btn) break; } break; + case PANEL_RR_SUPER7_IPS_V1: + strcat(txt_buf, "RR SUPER7 IPS"); + switch (display_rev) + { + case 0x01: + strcat(txt_buf, "-V1"); + break; + default: + strcat(txt_buf, " #FFDD00 Contact me!#"); + break; + } + break; + case PANEL_RR_SUPER7_IPS_HD_V1: + strcat(txt_buf, "RR SUPER7 IPS HD"); + switch (display_rev) + { + case 0x01: + strcat(txt_buf, "-V1"); + break; + default: + strcat(txt_buf, " #FFDD00 Contact me!#"); + break; + } + break; + case PANEL_RR_SUPER7_OLED_7V1: + strcat(txt_buf, "RR SUPER7 OLED"); + switch (display_rev) + { + case 0x01: + strcat(txt_buf, "-V1"); + break; + default: + strcat(txt_buf, " #FFDD00 Contact me!#"); + break; + } + break; + case PANEL_RR_SUPER7_OLED_HD_7V1: + strcat(txt_buf, "RR SUPER7 OLED HD"); + switch (display_rev) + { + case 0x01: + strcat(txt_buf, "-V1"); + break; + default: + strcat(txt_buf, " #FFDD00 Contact me!#"); + break; + } + break; case PANEL_JDI_LAM062M109A: strcat(txt_buf, "JDI LAM062M109A"); break;