Skip to content

Commit

Permalink
Feat: Add KS2 support (#81)
Browse files Browse the repository at this point in the history
That should complete the 2024 lineup

---------

Co-authored-by: NiLuJe <[email protected]>
  • Loading branch information
ThatHackerDudeFromCyberspace and NiLuJe authored Jan 17, 2025
1 parent 7a0862b commit ab45018
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions fbink_device_id.c
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,21 @@ static bool
strtcpy(deviceQuirks.deviceCodename, "Sangria", sizeof(deviceQuirks.deviceCodename));
strtcpy(deviceQuirks.devicePlatform, "Bellatrix4", sizeof(deviceQuirks.devicePlatform));
return true;
case 0xFA0u: // KS2
case 0xFA1u:
case 0xFE5u:
case 0xF9Du:
case 0xFE4u:
case 0xFE3u:
case 0x102Eu:
case 0x102Du:
deviceQuirks.isMTK = true;
deviceQuirks.hasEclipseWfm = true;
deviceQuirks.screenDPI = 300U;
strtcpy(deviceQuirks.deviceName, "Scribe 2", sizeof(deviceQuirks.deviceName));
strtcpy(deviceQuirks.deviceCodename, "Pisco", sizeof(deviceQuirks.deviceCodename));
strtcpy(deviceQuirks.devicePlatform, "Bellatrix3", sizeof(deviceQuirks.devicePlatform));
return true;
case 0xE29u: // CS
case 0xE24u:
case 0xE2Bu:
Expand Down

0 comments on commit ab45018

Please sign in to comment.