31 lines
327 B
C
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")
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|