24 lines
429 B
C
24 lines
429 B
C
|
#ifndef __DTEST_SCAN_MAIN_H
|
||
|
#define __DTEST_SCAN_MAIN_H
|
||
|
|
||
|
typedef enum
|
||
|
{
|
||
|
DTEST_TEST_UART = 0x00U,
|
||
|
DTEST_TEST_VPP = 0x01U,
|
||
|
DTEST_TEST_SNR = 0x02U,
|
||
|
DTEST_TEST_FA = 0x03U,
|
||
|
DTEST_TEST_INTR = 0x04U,
|
||
|
DTEST_TEST_MAX
|
||
|
}DTEST_CASE_IDX;
|
||
|
|
||
|
/* cases para */
|
||
|
typedef struct
|
||
|
{
|
||
|
DTEST_CASE_IDX case_id;
|
||
|
uint8_t name[100];
|
||
|
}DtestScanCasePara_t;
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|