mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
Keyboard backlight fix for G14/G15 (#20)
* fixed mode and brightness combination if mmode is empty * corrected order in laptops
This commit is contained in:
@@ -56,6 +56,15 @@ fn choose_1866_device(prod: u16) -> LaptopBase {
|
||||
//backlight: Backlight::new("intel_backlight").unwrap(),
|
||||
};
|
||||
match &board_name.as_str()[..5] {
|
||||
"GA401" => {
|
||||
// Has no RGB control
|
||||
info!("Found GA401 series");
|
||||
laptop.support_animatrix = true;
|
||||
}
|
||||
"GA502" => {
|
||||
// Has no RGB control
|
||||
info!("Found GA502 series");
|
||||
}
|
||||
"GX502" => {
|
||||
info!("Found GX502 series");
|
||||
laptop.supported_modes = vec![
|
||||
@@ -82,15 +91,6 @@ fn choose_1866_device(prod: u16) -> LaptopBase {
|
||||
BuiltInModeByte::Rainbow,
|
||||
];
|
||||
}
|
||||
"GA502" => {
|
||||
// Has no RGB control
|
||||
info!("Found GA502 series");
|
||||
}
|
||||
"GA401" => {
|
||||
// Has no RGB control
|
||||
info!("Found GA401 series");
|
||||
laptop.support_animatrix = true;
|
||||
}
|
||||
_ => panic!("Unsupported laptop: {}, please request support at\nhttps://github.com/flukejones/rog-core", board_name),
|
||||
}
|
||||
laptop
|
||||
|
||||
Reference in New Issue
Block a user