FreeCalypso > hg > fc-tourmaline
view src/cs/services/vibr/vibr_env.h @ 304:58c7961bd0b0 default tip
TCH tap: extend DL sniffing feature to support CSD modes
Our debug feature for TCH DL sniffing reads the content of the DSP's
a_dd_0 buffer (or a_dd_1 for TCH/H subchannel 1) at appropriate times
and forwards captured bits to the host. This feature was originally
implemented for TCH/FS, TCH/EFS and TCH/HS - now extend it to cover
TCH/F data modes too.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 25 Nov 2024 23:33:27 +0000 |
parents | e17bdedfbf2b |
children |
line wrap: on
line source
/* * RiViera environment boilerplate header for VIBR SWE */ #ifndef __VIBR_ENV_H__ #define __VIBR_ENV_H__ #include "rvm/rvm_gen.h" #include "vibr/vibr_struct_i.h" #include "vibr/vibr_pool_size.h" #define VIBR_MAILBOX RVF_TASK_MBOX_0 #define VIBR_TIMER RVF_TIMER_0 /* memory bank size and watermark */ #define VIBR_MB_PRIM_SIZE VIBR_MB1_SIZE #define VIBR_MB_PRIM_WATERMARK (VIBR_MB_PRIM_SIZE) #define VIBR_MB_PRIM_INC_SIZE 0 #define VIBR_MB_PRIM_INC_WATERMARK 0 extern struct vibr_env *vibr_env; /* Prototypes */ T_RVM_RETURN vibr_get_info (T_RVM_INFO_SWE *infoSWE); T_RVM_RETURN vibr_set_info(T_RVF_ADDR_ID addr_id, T_RV_RETURN return_path[], T_RVF_MB_ID mbId[], T_RVM_RETURN (*callBackFct) (T_RVM_NAME SWEntName, T_RVM_RETURN errorCause, T_RVM_ERROR_TYPE errorType, T_RVM_STRING errorMsg)); T_RVM_RETURN vibr_init (void); T_RVM_RETURN vibr_core (void); T_RVM_RETURN vibr_stop (void); T_RVM_RETURN vibr_kill (void); #endif /* include guard */