feat: add simplified windows x86 support

This commit is contained in:
yankun
2026-06-27 18:33:59 +08:00
parent 7de0777748
commit 67c995db83
12 changed files with 400 additions and 84 deletions
+5
View File
@@ -4,6 +4,11 @@ const log = require('./logger');
const { isRK3566, isRK3588, readDeviceModel } = require('./led/detect');
function loadImpl() {
if (process.platform === 'win32') {
log.info('led', 'LED/VFD backend -> terminal (Windows/x86)');
return require('./led/terminal');
}
const forced = String(process.env.CLAWD_LED_IMPL || '').trim().toLowerCase();
const model = readDeviceModel();