feat(core): micropython板卡烧录固件时支持调整波特率

This commit is contained in:
王立帮
2025-09-13 22:56:12 +08:00
parent 29280ddd9a
commit 167c6e9e30
21 changed files with 676 additions and 57 deletions

View File

@@ -54,6 +54,10 @@ import * as MicroPythonSerialGenerators from './generators/serial';
import * as MicroPythonSystemGenerators from './generators/system';
import * as MicroPythonWeatherGenerators from './generators/weather';
import * as MicroPythonZhHans from './language/zh-hans';
import * as MicroPythonZhHant from './language/zh-hant';
import * as MicroPythonEn from './language/en';
import { Python } from './python_generator';
export {
@@ -111,5 +115,8 @@ export {
MicroPythonSerialGenerators,
MicroPythonSystemGenerators,
MicroPythonWeatherGenerators,
MicroPythonZhHans,
MicroPythonZhHant,
MicroPythonEn,
Python
};