Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for MAG274QRF-QD FW.021 #57

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ information by opening an issue.
| MAG274R | ? | Yes | "V41" | "00Z"| ? |[Manual](https://download.msi.com/archive/mnu_exe/monitor/Optix_MAG274_274Rv1.0_English.pdf)|
| MAG274QRF-QD | FW.011 | Yes | "V43" | "00e"| AUO_M270DAN08_2| |
| MAG274QRF-QD | FW.015 | Yes | "V48" | "00e"| AUO_M270DAN08_2| |
| MAG274QRF-QD | FW.020 | Yes | "V56" | "00e"| AUO_M270DAN08_2|[Manual](https://download.msi.com/archive/mnu_exe/monitor/Optix_MAG274QRF_MAG274QRF-QDv1.0_English.pdf)|
| MAG274QRF-QD | FW.020 | Yes | "V56" | "00e"| AUO_M270DAN08_2| |
| MAG274QRF-QD | FW.021 | Yes | "V56" | "00e"| AUO_M270DAN08_2|[Manual](https://download.msi.com/archive/mnu_exe/monitor/Optix_MAG274QRF_MAG274QRF-QDv1.0_English.pdf)|
| MAG274QRX | ? | Partial 2) | "V53" | "00\|"| ? |[Manual](https://download.msi.com/archive/mnu_exe/monitor/Optix_MAG274QRXv1.0_English.pdf)|
| MAG270CR | ? | ? | ? | ? | ? | |
| MAG271C | ? | ? | "V18" | "002"| ? |[Manual](https://download.msi.com/archive/mnu_exe/monitor/MAG241C_CP_CR_CV_271C_CP_CR_CVv1.0_English.pdf)|
Expand Down
2 changes: 1 addition & 1 deletion src/msigd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ static std::vector<identity_t> known_models =
{ MAG251RX, "00B", "V18", "MAG251RX", LT_MYSTIC }, // MAG251RX
{ MAG274QRFQD, "00e", "V43", "MAG274QRF-QD FW.011", LT_MYSTIC_OPTIX }, // MAG274QRF-QD FW.011
{ MAG274QRFQD16, "00e", "V48", "MAG274QRF-QD FW.015/FW.016", LT_MYSTIC_OPTIX }, // MAG274QRF-QD FW.015/FW.016
{ MAG274QRFQD20, "00e", "V56", "MAG274QRF-QD FW.020", LT_MYSTIC_OPTIX }, // MAG274QRF-QD FW.020
{ MAG274QRFQD20, "00e", "V56", "MAG274QRF-QD FW.020/FW.021", LT_MYSTIC_OPTIX }, // MAG274QRF-QD FW.020/FW.021
{ PS341WU, "00?", "V06", "PS341WU", LT_NONE },
{ MAG274QRX, "00|", "V43", "MAG274QRX", LT_MYSTIC_OPTIX, true },
{ MD272QP, "00\x85", "V51", "MD272QP", LT_NONE }, // MAG274QRF-QD FW.011
Expand Down