添加排除python打包文件的忽略项

This commit is contained in:
ranchuan
2023-06-19 18:34:37 +08:00
parent 4fedcbdd38
commit f1fa0257c1
3 changed files with 7 additions and 3 deletions

3
.gitignore vendored
View File

@@ -9,3 +9,6 @@ build_log.txt
__pycache__/
*.pid
*.pkt
*.spec
python/build/
python/dist/

View File

@@ -6,7 +6,7 @@
#define BUILD_DATE "2023-06-16 19:59:30"
#define BUILD_DATE "2023-06-19 09:41:22"
#define SOFT_VERSION "0.01"

View File

@@ -287,7 +287,8 @@ static void check_return_ok(void *p)
for(int i=0;i<10;i++){
arr_append(a,i+slave_addr_off());
arr_append(a,0);// 成功
arr_append_num(a,4,0);
arr_append(a,i+1);// 返回真是序号
arr_append_num(a,3,0);
}
emit tran_send_signal(u->u.p,0x81,arr_temp(a));
tran_set_busy(u->u.p,0);