| 484 | } |
| 485 | |
| 486 | bool Operate::isKeyboardBacklightModeSupport() const { |
| 487 | // Backlight mode is not available for all keyboard with backlight |
| 488 | |
| 489 | // Keep the same behaviour for devices with brightness at 0xD3 |
| 490 | if (keyboardBacklightAddress == keyboardBacklightAddress_0xD3) |
| 491 | return true; |
| 492 | |
| 493 | // By security, we concider that devices with brightness at 0xF3 don't have backlight mode |
| 494 | return false; |
| 495 | } |
| 496 | |
| 497 | bool Operate::isKeyboardBacklightSupport() const { |
| 498 | if (msiEcHelper.hasKeyboardBacklightBrightness()) |