feat: skip VFD on RK3588 devices (v1.3.8)

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
stswangzhiping
2026-05-08 22:38:18 +08:00
parent 000dc4a46c
commit cdf2a5f5ac
3 changed files with 9 additions and 2 deletions

View File

@@ -16,7 +16,12 @@ function isRK3566() {
return /RK3566/i.test(readDeviceModel());
}
function isRK3588() {
return /RK3588/i.test(readDeviceModel());
}
module.exports = {
readDeviceModel,
isRK3566,
isRK3588,
};