WS63 SDK 文档 7021f4f@fbb_ws63
ws63 和 ws63e 解决方案的 SDK 文档
载入中...
搜索中...
未找到
diag_cmd_stat.h
浏览该文件的文档.
1/*
2 * Copyright (c) HiSilicon (Shanghai) Technologies Co., Ltd. 2022-2023. All rights reserved.
3 * Description: diag stat query cmd.
4 */
5
6#ifndef DIAG_CMD_STAT_H
7#define DIAG_CMD_STAT_H
8
9#include "errcode.h"
10#include "diag.h"
11
12#define DFX_STAT_ID_BASE_SYS 0x0557 /* SYS STAT packet ID range: [0xA000, 0xF000) */
13#define DFX_STAT_ID_MAX_SYS 0x055E
14
15
16typedef struct {
17 uint32_t id;
19
20errcode_t diag_cmd_stat_query(uint16_t cmd_id, void *cmd_param, uint16_t cmd_param_size, diag_option_t *option);
21
22#endif
errcode_t diag_cmd_stat_query(uint16_t cmd_id, void *cmd_param, uint16_t cmd_param_size, diag_option_t *option)
Definition diag_cmd_stat.c:47
uint32_t errcode_t
Definition of error code.
Definition errcode.h:30
Definition diag_cmd_stat.h:16
uint32_t id
Definition diag_cmd_stat.h:17
option选项,当前存放对端地址
Definition diag.h:38