comparison src/cs/services/atp/atp_env.h @ 0:945cf7f506b2

src/cs: chipsetsw import from tcs211-fcmodem binary blobs and LCD demo files have been excluded, all line endings are LF only
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 25 Sep 2016 22:50:11 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:945cf7f506b2
1 #ifndef __ATP_ENV_H_
2 #define __ATP_ENV_H_
3
4 /*******************************************************************************
5 *
6 * atp_env.h
7 *
8 * This files contains external definitions and prototypes for ATP environment
9 * module.
10 *
11 * (C) Texas Instruments, all rights reserved
12 *
13 * Version number : 1.0
14 *
15 * History : 1.0 (2/21/2000) - Created
16 *
17 * Date : 30/May/2000
18 *
19 * Author : Eric Baissus : e-baissus@ti.com
20 *
21 ******************************************************************************/
22 #include "rv/rv_general.h"
23 #include "rvf/rvf_api.h"
24 #include "rvm/rvm_gen.h"
25
26
27 T_RVM_RETURN atp_get_info (T_RVM_INFO_SWE *p_info_swe);
28
29 T_RVM_RETURN
30 atp_set_info(T_RVF_ADDR_ID addr_id,
31 T_RV_RETURN return_path[],
32 T_RVF_MB_ID mb_id[],
33 T_RVM_RETURN (*rvm_error_ft) ( T_RVM_NAME swe_name,
34 T_RVM_RETURN error_cause,
35 T_RVM_ERROR_TYPE error_type,
36 T_RVM_STRING error_msg) );
37 T_RVM_RETURN atp_init (void);
38
39 T_RVM_RETURN atp_start (void);
40
41 T_RVM_RETURN atp_stop (void);
42
43 T_RVM_RETURN atp_kill (void);
44
45
46
47 #endif