blob: 313ab1679cd01420361ceb9dcab5efb1b3e39776 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef RVL_SDK_DSP_H
#define RVL_SDK_DSP_H
#include "common.h"
#ifdef __cplusplus
extern "C" {
#endif
// Forward declarations
typedef struct DSPTask;
// General-purpose typedef
typedef void *DSPMail;
BOOL DSPCheckMailToDSP(void);
BOOL DSPCheckMailFromDSP(void);
DSPMail DSPReadMailFromDSP(void);
void DSPSendMailToDSP(DSPMail mail);
void DSPAssertInt(void);
void DSPInit(void);
BOOL DSPCheckInit(void);
struct DSPTask *DSPAddTask(struct DSPTask *task);
struct DSPTask *DSPAssertTask(struct DSPTask *task);
#ifdef __cplusplus
}
#endif
#endif
|