From db7a9fa4bfc61c3bd4aa15a8a7e2483f99f1653f Mon Sep 17 00:00:00 2001 From: theloveofcat Date: Mon, 26 Jan 2026 01:47:55 +0300 Subject: [PATCH 1/2] Add motherboard support --- .../MSIMysticLight761Controller/MSIMysticLight761Controller.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Controllers/MSIMysticLightController/MSIMysticLight761Controller/MSIMysticLight761Controller.cpp b/Controllers/MSIMysticLightController/MSIMysticLight761Controller/MSIMysticLight761Controller.cpp index 6febe0875..25b40682f 100644 --- a/Controllers/MSIMysticLightController/MSIMysticLight761Controller/MSIMysticLight761Controller.cpp +++ b/Controllers/MSIMysticLightController/MSIMysticLight761Controller/MSIMysticLight761Controller.cpp @@ -62,6 +62,7 @@ static const std::string board_names[] = "MSI PRO X870E-P WIFI (MS-7E70)", "MSI MPG X870I EDGE TI EVO WIFI (MS-7E50)", "MSI B850 GAMING PLUS WIFI (MS-7E56)", + "PRO X870-P WIFI (MS-7E47)" }; static const mystic_light_761_config board_configs[] = @@ -81,6 +82,7 @@ static const mystic_light_761_config board_configs[] = { &(board_names[12]), 0, 0, 0, 1, &zone_set1, MSIMysticLight761Controller::DIRECT_MODE_ZONE_BASED }, // MSI PRO X870E-P WIFI { &(board_names[13]), 0, 0, 0, 1, &zone_set1, MSIMysticLight761Controller::DIRECT_MODE_ZONE_BASED }, // MSI MPG X870I EDGE TI EVO WIFI (MS-7E50) { &(board_names[14]), 0, 0, 0, 1, &zone_set1, MSIMysticLight761Controller::DIRECT_MODE_ZONE_BASED }, // MSI B850 GAMING PLUS WIFI (MS-7E56) + { &(board_names[15]), 0, 0, 0, 1, &zone_set1, MSIMysticLight761Controller::DIRECT_MODE_ZONE_BASED }, // PRO X870-P WIFI (MS-7E47) }; enum MSI_ZONE setup_map [] = From a0099be505565ec2fe25c365794ed11281ec6fd8 Mon Sep 17 00:00:00 2001 From: theloveofcat Date: Mon, 26 Jan 2026 02:10:55 +0300 Subject: [PATCH 2/2] Change motherboard name --- .../MSIMysticLight761Controller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Controllers/MSIMysticLightController/MSIMysticLight761Controller/MSIMysticLight761Controller.cpp b/Controllers/MSIMysticLightController/MSIMysticLight761Controller/MSIMysticLight761Controller.cpp index 25b40682f..9033a8477 100644 --- a/Controllers/MSIMysticLightController/MSIMysticLight761Controller/MSIMysticLight761Controller.cpp +++ b/Controllers/MSIMysticLightController/MSIMysticLight761Controller/MSIMysticLight761Controller.cpp @@ -62,7 +62,7 @@ static const std::string board_names[] = "MSI PRO X870E-P WIFI (MS-7E70)", "MSI MPG X870I EDGE TI EVO WIFI (MS-7E50)", "MSI B850 GAMING PLUS WIFI (MS-7E56)", - "PRO X870-P WIFI (MS-7E47)" + "MSI PRO X870-P WIFI (MS-7E47)" }; static const mystic_light_761_config board_configs[] = @@ -82,7 +82,7 @@ static const mystic_light_761_config board_configs[] = { &(board_names[12]), 0, 0, 0, 1, &zone_set1, MSIMysticLight761Controller::DIRECT_MODE_ZONE_BASED }, // MSI PRO X870E-P WIFI { &(board_names[13]), 0, 0, 0, 1, &zone_set1, MSIMysticLight761Controller::DIRECT_MODE_ZONE_BASED }, // MSI MPG X870I EDGE TI EVO WIFI (MS-7E50) { &(board_names[14]), 0, 0, 0, 1, &zone_set1, MSIMysticLight761Controller::DIRECT_MODE_ZONE_BASED }, // MSI B850 GAMING PLUS WIFI (MS-7E56) - { &(board_names[15]), 0, 0, 0, 1, &zone_set1, MSIMysticLight761Controller::DIRECT_MODE_ZONE_BASED }, // PRO X870-P WIFI (MS-7E47) + { &(board_names[15]), 0, 0, 0, 1, &zone_set1, MSIMysticLight761Controller::DIRECT_MODE_ZONE_BASED }, // MSI PRO X870-P WIFI (MS-7E47) }; enum MSI_ZONE setup_map [] =