FreeCalypso > hg > fc-tourmaline
comparison src/cs/services/audio/audio_bgd/audio_bgd_const_i.h @ 0:4e78acac3d88
src/{condat,cs,gpf,nucleus}: import from Selenite
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 16 Oct 2020 06:23:26 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4e78acac3d88 |
---|---|
1 /****************************************************************************/ | |
2 /* */ | |
3 /* File Name: audio_bgd_const_i.h */ | |
4 /* */ | |
5 /* Purpose: Internal constants used by AUDIO BACKGROUND instance */ | |
6 /* */ | |
7 /* */ | |
8 /* Version 1 */ | |
9 /* */ | |
10 /* Date Modification */ | |
11 /* ------------------------------------ */ | |
12 /* 19 June 2003 Creation */ | |
13 /* */ | |
14 /* Author Frederic Turgis */ | |
15 /* */ | |
16 /* */ | |
17 /* (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved*/ | |
18 /****************************************************************************/ | |
19 | |
20 #include "rv/rv_defined_swe.h" | |
21 | |
22 #ifdef RVM_AUDIO_BGD_SWE | |
23 | |
24 #ifndef __AUDIO_CONST_I_H_ | |
25 #define __AUDIO_CONST_I_H_ | |
26 | |
27 #include "rvf/rvf_api.h" | |
28 | |
29 #ifdef __cplusplus | |
30 extern "C" | |
31 { | |
32 #endif | |
33 | |
34 /* the task processes events with no time-out */ | |
35 #define AUDIO_BGD_NOT_TIME_OUT (0) | |
36 | |
37 /* The audio background entity processes only the message sent to the following mail box */ | |
38 #define AUDIO_BGD_MBOX (RVF_TASK_MBOX_0) | |
39 | |
40 /* The audio entity takes into account only the following events: */ | |
41 #define AUDIO_BGD_TASK_MBOX_EVT_MASK (RVF_TASK_MBOX_0_EVT_MASK) | |
42 | |
43 /* The audio background entity waits all event type */ | |
44 #define AUDIO_BGD_ALL_EVENT_FLAGS (0xFFFF) | |
45 | |
46 #ifdef __cplusplus | |
47 } | |
48 #endif | |
49 | |
50 #endif // #ifndef __AUDIO_CONST_I_H_ | |
51 #endif // #ifdef RVM_AUDIO_BGD_SWE |