qipp
2025-09-16 e7ac407a6aa40e94a34a772dee14e8d5fb55c45b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _DSP_REPORT_H__
#define _DSP_REPORT_H__
 
 
#define DSP_CPU_UTILITY    1001
#define DSP_MEM_UTILITY    1002
#define DSP_RUNNING_STATUS 1003
#define DSP_USB_JITTER     1004
#define DSP_CLOCK_STATUS   1005
#define DSP_EMULATE_DEBUG  1006
#define DSP_SCENE_REQUEST  1007
#define DSP_SCENE_DONE     1008
 
typedef struct {
    short ID;
    short value[12];
}device_status_mem;
 
 
void device_status_report(short ID , short* value, int numOfValue);
void msg_report_dsp_status(command_type type);
#endif