mirror of
https://github.com/CTCaer/hekate
synced 2024-12-22 11:21:23 +00:00
nyx: add info for new touch panels
New 6.2" touch panel and a new firmware for 7.0"
This commit is contained in:
parent
af7bee2231
commit
6bd4c31965
3 changed files with 10 additions and 4 deletions
|
@ -40,7 +40,7 @@ Custom Graphical Nintendo Switch bootloader, firmware patcher, tools, and many m
|
||||||
| Folder/File | Description |
|
| Folder/File | Description |
|
||||||
| ------------------------ | --------------------------------------------------------------------- |
|
| ------------------------ | --------------------------------------------------------------------- |
|
||||||
| bootloader | Main folder. |
|
| bootloader | Main folder. |
|
||||||
| \|__ bootlogo.bmp | It is if no `logopath` key is found. User provided. Can be skipped. |
|
| \|__ bootlogo.bmp | It is used if no `logopath` key is found. User provided. Can be skipped. |
|
||||||
| \|__ hekate_ipl.ini | Main bootloader configuration and boot entries in `Launch` menu. |
|
| \|__ hekate_ipl.ini | Main bootloader configuration and boot entries in `Launch` menu. |
|
||||||
| \|__ nyx.ini | Nyx GUI configuration |
|
| \|__ nyx.ini | Nyx GUI configuration |
|
||||||
| \|__ patches.ini | Add external patches. Can be skipped. A template can be found [here](./res/patches_template.ini) |
|
| \|__ patches.ini | Add external patches. Can be skipped. A template can be found [here](./res/patches_template.ini) |
|
||||||
|
|
|
@ -590,7 +590,7 @@ static lv_res_t _create_window_fuses_info_status(lv_obj_t *btn)
|
||||||
case LPDDR4X_IOWA_8GB_SAMSUNG_1Y_Y:
|
case LPDDR4X_IOWA_8GB_SAMSUNG_1Y_Y:
|
||||||
strcpy(dram_man, "Samsung 1y Y 8GB");
|
strcpy(dram_man, "Samsung 1y Y 8GB");
|
||||||
break;
|
break;
|
||||||
// case LPDDR4X_AULA_4GB_SAMSUNG_1Y_A: // Unused.
|
// case LPDDR4X_AULA_8GB_SAMSUNG_1Y_A: // Unused.
|
||||||
// strcpy(dram_man, "Samsung 1y A 4GB");
|
// strcpy(dram_man, "Samsung 1y A 4GB");
|
||||||
// break;
|
// break;
|
||||||
case LPDDR4X_IOWA_4GB_MICRON_1Y_A:
|
case LPDDR4X_IOWA_4GB_MICRON_1Y_A:
|
||||||
|
@ -951,6 +951,11 @@ static lv_res_t _create_window_fuses_info_status(lv_obj_t *btn)
|
||||||
if (touch_panel)
|
if (touch_panel)
|
||||||
panel_ic_paired = touch_panel->idx == 0; // NISSHA NFT-K12D.
|
panel_ic_paired = touch_panel->idx == 0; // NISSHA NFT-K12D.
|
||||||
break;
|
break;
|
||||||
|
case 0x98000004: // New 6.2" panel?
|
||||||
|
strcat(txt_buf, "FST2 UNK");
|
||||||
|
if (touch_panel)
|
||||||
|
panel_ic_paired = touch_panel->idx == 0;
|
||||||
|
break;
|
||||||
case 0x001A0300:
|
case 0x001A0300:
|
||||||
case 0x32000102:
|
case 0x32000102:
|
||||||
strcat(txt_buf, "4CD 2602");
|
strcat(txt_buf, "4CD 2602");
|
||||||
|
@ -972,9 +977,10 @@ static lv_res_t _create_window_fuses_info_status(lv_obj_t *btn)
|
||||||
case 0x32000501:
|
case 0x32000501:
|
||||||
case 0x33000502:
|
case 0x33000502:
|
||||||
case 0x33000503:
|
case 0x33000503:
|
||||||
|
case 0x33000510:
|
||||||
strcat(txt_buf, "4CD UNKN");
|
strcat(txt_buf, "4CD UNKN");
|
||||||
if (touch_panel)
|
if (touch_panel)
|
||||||
panel_ic_paired = touch_panel->idx == 4; // Unknown Aula 6.2".
|
panel_ic_paired = touch_panel->idx == 4; // Unknown Aula 7.0".
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
strcat(txt_buf, "#FF8000 Unknown#");
|
strcat(txt_buf, "#FF8000 Unknown#");
|
||||||
|
|
|
@ -1273,7 +1273,7 @@ static lv_res_t _create_window_dump_pk12_tool(lv_obj_t *btn)
|
||||||
strcat(txt_buf, "#FFDD00 Pkg2 decryption failed!#");
|
strcat(txt_buf, "#FFDD00 Pkg2 decryption failed!#");
|
||||||
lv_label_set_text(lb_desc, txt_buf);
|
lv_label_set_text(lb_desc, txt_buf);
|
||||||
manual_system_maintenance(true);
|
manual_system_maintenance(true);
|
||||||
|
|
||||||
if (!res)
|
if (!res)
|
||||||
{
|
{
|
||||||
strcat(txt_buf, "\npkg2 encrypted dumped to pkg2_encr.bin\n");
|
strcat(txt_buf, "\npkg2 encrypted dumped to pkg2_encr.bin\n");
|
||||||
|
|
Loading…
Reference in a new issue