From ab4501820bde0fafc1b2c6d74b9c576a49d2eadd Mon Sep 17 00:00:00 2001 From: HackerDude <69104218+ThatHackerDudeFromCyberspace@users.noreply.github.com> Date: Fri, 17 Jan 2025 19:39:03 +0000 Subject: [PATCH] Feat: Add KS2 support (#81) That should complete the 2024 lineup --------- Co-authored-by: NiLuJe --- fbink_device_id.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/fbink_device_id.c b/fbink_device_id.c index f2394814..a2624b02 100644 --- a/fbink_device_id.c +++ b/fbink_device_id.c @@ -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: