add more cn chars

This commit is contained in:
2026-01-31 17:34:38 +08:00
parent ccd5f1741e
commit fc258f11cd
17 changed files with 619 additions and 32 deletions

View File

@@ -1,13 +1,16 @@
#!/bin/sh
#!/bin/bash
# switch to local path
cd "$(dirname "$0")" || exit 1
# 连接并打印文件列表
mpremote ls
# 生成romfs文件系统并上传
mpremote romfs deploy src/rom
mpremote romfs deploy ../src/rom
# 复制文件
for file in src/*.py; do
for file in ../src/*.py; do
if [ -f "$file" ]; then
mpremote fs cp "$file" :
fi