此日期之前的累计更新,详见ReadMe

This commit is contained in:
ranchuan
2024-03-07 09:22:49 +08:00
parent 87ad52847e
commit 8ed8cf52ff
10 changed files with 330 additions and 77 deletions

View File

@@ -69,7 +69,8 @@ typedef struct{
static self_def g_self={
.taskid_table=(uint8_t*)(APP_TEST_PLAN_ADDR+4),
.tasks_fun_table={jqtaskArray,xttaskArray,ewtaskArray},
// .tasks_fun_table={jqtaskArray,xttaskArray,ewtaskArray},
.tasks_fun_table={jqtaskArray,0,ewtaskArray},
};
@@ -496,7 +497,9 @@ CheckerTask elec_get_task_fun(uint8_t taskid)
CheckerTask **tasks_fun_table=s->tasks_fun_table;
uint8_t chip_type=s->chip_type;
if(taskid<CHECKER_MAXID_COUNT){
task_fun=tasks_fun_table[chip_type][taskid];
if(tasks_fun_table[chip_type]){
task_fun=tasks_fun_table[chip_type][taskid];
}
}else if((taskid>=CHECKER_MAXID_COUNT)&&
(taskid<(CHECKER_MAXID_COUNT+CHECKER_EXTID_COUNT)))
{
@@ -621,7 +624,7 @@ array_def *elec_code(array_def *uid_psw)
return arr_temp(r);
}
elec_code_load_param(uid_psw);
ret = XT_UID_PWD_Bind();
// ret = XT_UID_PWD_Bind();
arr_append(r,ret);
s->data=arr_duplicate(r);
return arr_temp(r);