Files
checker_slave/source/elec_det/elec_cmd.c
2023-10-07 18:15:52 +08:00

31 lines
327 B
C

#include "elec_det.h"
#include "commend.h"
#include "mystring.h"
// 电子模块相关调试命令
static int cmd_check(list_def *argv)
{
array_def *data=arr_creat();
cmd_print("start check.");
elec_check_with_scheme(data);
arr_delete(data);
return 0;
}
commend_export(check,cmd_check,"start check")