00001 00013 #ifndef _LA_H_ 00014 #define _LA_H_ 00015 00016 /* 00017 * INCLUDE FILES 00018 **************************************************************************************** 00019 */ 00020 #include "co_int.h" 00021 #include "co_bool.h" 00022 00023 00024 // forward declarations 00025 struct dbg_debug_dump_tag; 00026 00036 00037 #define LA_CONF_LEN 10 00038 00040 struct la_conf_tag 00041 { 00043 uint32_t conf[LA_CONF_LEN]; 00045 uint32_t trace_len; 00047 uint32_t diag_conf; 00048 }; 00049 00057 void la_init(void); 00058 00065 void la_start(void); 00066 00073 void la_stop(void); 00074 00083 void la_dump_trace(struct dbg_debug_dump_tag *dbg_dump); 00084 00094 void la_get_conf(struct la_conf_tag *conf); 00095 00097 00098 #endif // _LA_H_
1.6.1