From 8d2d4d68c8b4a8114d86d477a225df82fea93d4e Mon Sep 17 00:00:00 2001 From: Jaden Korr <6871931-jadenkorr@users.noreply.gitlab.com> Date: Sun, 21 Sep 2025 09:25:47 +0200 Subject: [PATCH] Support for MSI MEG X399 CREATION via MSI Mystic Light 162-byte Controller --- .../MSIMysticLight162Controller/MSIMysticLight162Controller.cpp | 1 + .../MSIMysticLightController/MSIMysticLightControllerDetect.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/Controllers/MSIMysticLightController/MSIMysticLight162Controller/MSIMysticLight162Controller.cpp b/Controllers/MSIMysticLightController/MSIMysticLight162Controller/MSIMysticLight162Controller.cpp index 82bfb5668..40962d467 100644 --- a/Controllers/MSIMysticLightController/MSIMysticLight162Controller/MSIMysticLight162Controller.cpp +++ b/Controllers/MSIMysticLightController/MSIMysticLight162Controller/MSIMysticLight162Controller.cpp @@ -75,6 +75,7 @@ static const mystic_light_162_config board_configs[] = { 0x7B18, 6, &zones_set1 }, // MAG Z390 TOMAHAWK { 0x7B50, 6, &zones_set2 }, // MPG Z390M GAMING EDGE AC { 0x7B85, 7, &zones_set0 }, // B450 GAMING PRO CARBON + { 0x7B92, 10, &zones_set0 }, // MEG X399 CREATION { 0xB926, 3, &zones_set3 }, // MPG B460 TRIDENT AS }; diff --git a/Controllers/MSIMysticLightController/MSIMysticLightControllerDetect.cpp b/Controllers/MSIMysticLightController/MSIMysticLightControllerDetect.cpp index 66386c528..8a155297f 100644 --- a/Controllers/MSIMysticLightController/MSIMysticLightControllerDetect.cpp +++ b/Controllers/MSIMysticLightController/MSIMysticLightControllerDetect.cpp @@ -135,6 +135,7 @@ REGISTER_HID_DETECTOR_PU("MSI Mystic Light MS_7B17", DetectMSIMysticLightCont REGISTER_HID_DETECTOR_PU("MSI Mystic Light MS_7B18", DetectMSIMysticLightControllers, MSI_USB_VID, 0x7B18, 0x0001, 0x00); REGISTER_HID_DETECTOR_PU("MSI Mystic Light MS_7B50", DetectMSIMysticLightControllers, MSI_USB_VID, 0x7B50, 0x0001, 0x00); REGISTER_HID_DETECTOR_PU("MSI Mystic Light MS_7B85", DetectMSIMysticLightControllers, MSI_USB_VID, 0x7B85, 0x0001, 0x00); +REGISTER_HID_DETECTOR_PU("MSI Mystic Light MS_7B92", DetectMSIMysticLightControllers, MSI_USB_VID, 0x7B92, 0x0001, 0x00); REGISTER_HID_DETECTOR_PU("MSI Mystic Light MS_7B93", DetectMSIMysticLightControllers, MSI_USB_VID, 0x7B93, 0x0001, 0x00); REGISTER_HID_DETECTOR_PU("MSI Mystic Light MS_7C34", DetectMSIMysticLightControllers, MSI_USB_VID, 0x7C34, 0x0001, 0x00); REGISTER_HID_DETECTOR_PU("MSI Mystic Light MS_7C35", DetectMSIMysticLightControllers, MSI_USB_VID, 0x7C35, 0x0001, 0x00);