This repository has been archived on 2025-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
|
#ifndef __APP_HART_H__
|
|
#define __APP_HART_H__
|
|
#include "lib.h"
|
|
|
|
typedef enum
|
|
{
|
|
HART_FILE_MODE_DIAGNOSIS = 3, // 模式诊断
|
|
} hart_file_read_e;
|
|
|
|
typedef enum
|
|
{
|
|
HART_TUNING_STOP = 1, // 退出
|
|
HART_TUNING_START = 3, // 开始
|
|
} hart_tuning_e;
|
|
|
|
#endif // __APP_HART_H__
|