#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
|