FreeCalypso > hg > fc-tourmaline
view src/cs/drivers/drv_app/kpd/kpd_messages_i.h @ 273:5caa86ee2cfa
enable L1_NEW_AEC in l1_confg.h (bold change)
The AEC function implemented in DSP ROM 3606 on the Calypso silicon
we work with is the one that corresponds to L1_NEW_AEC; the same holds
for DSP 34 and even for DSP 33 with more recent patch versions.
However, TI shipped their TCS211 reference fw with L1_NEW_AEC set to 0,
thus driving AEC the old way if anyone tried to enable it, either via
AT%Nxxxx or via the audio mode facility. As a result, the fw would
try to control features which no longer exist in the DSP (long vs short
echo and the old echo suppression level bits), while providing no way
to tune the 8 new parameter words added to the DSP's NDB page.
The only sensible solution is to bite the bullet and enable L1_NEW_AEC
in L1 config, with fallout propagating into RiViera Audio Service
T_AUDIO_AEC_CFG structure and into /aud/*.cfg binary file format.
The latter fallout will be addressed in further code changes.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 29 Jul 2021 18:32:40 +0000 |
parents | 4e78acac3d88 |
children |
line wrap: on
line source
/** * @file kpd_messages_i.h * * Data structures that KPD SWE can receive. * * These messages are send by the bridge function. There are not available * out of the SWE. * * @author Laurent Sollier (l-sollier@ti.com) * @version 0.1 */ /* * History: * * Date Author Modification * ---------------------------------------- * 10/10/2001 L Sollier Create * * * (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved */ #ifndef _KPD_MESSAGES_I_H_ #define _KPD_MESSAGES_I_H_ #include "kpd/kpd_api.h" #include "kpd/kpd_i.h" #include "kpd/kpd_messages_i.h" #include "rv/rv_general.h" /* Strusture used to send a subscription request */ typedef struct { T_SUBSCRIBER_ID subscriber_id; T_KPD_MODE mode; T_KPD_VIRTUAL_KEY_TABLE notified_keys; T_RV_RETURN return_path; } T_SUBSCRIPTION_INFO; /** * @name KPD_SUBSCRIBE_MSG * * Internal message. * * Message issued by KPD to KPD task. * This message is used to process a subscription. */ /*@{*/ /** Message ID. */ #define KPD_SUBSCRIBE_MSG (KPD_MESSAGES_OFFSET | 0x003) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /** Informations for subscription. */ T_SUBSCRIPTION_INFO subscription_info; } T_KPD_SUBSCRIBE_MSG; /*@}*/ /** * @name KPD_UNSUBSCRIBE_MSG * * Internal message. * * Message issued by KPD to KPD task. * This message is used to process an unsubscription. */ /*@{*/ /** Message ID. */ #define KPD_UNSUBSCRIBE_MSG (KPD_MESSAGES_OFFSET | 0x004) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /** Subscriber Id. */ T_SUBSCRIBER_ID subscriber_id; } T_KPD_UNSUBSCRIBE_MSG; /*@}*/ /** * @name KPD_NOTIF_KEYS_MSG * * Internal message. * * Message issued by KPD to KPD task. * This message is used to store a notification key level . */ /*@{*/ /** Message ID. */ #define KPD_NOTIF_KEYS_MSG (KPD_MESSAGES_OFFSET | 0x005) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /* Keys informations */ T_SUBSCRIBER_ID subscriber_id; T_KPD_VIRTUAL_KEY_TABLE notif_key_table; T_KPD_NOTIF_LEVEL notif_level; UINT16 long_press_time; UINT16 repeat_time; } T_KPD_NOTIF_KEYS_MSG; /*@}*/ /** * @name KPD_CHANGE_MODE_MSG * * Internal message. * * Message issued by KPD to KPD task. * This message is used to change the mode for a subscriber. */ /*@{*/ /** Message ID. */ #define KPD_CHANGE_MODE_MSG (KPD_MESSAGES_OFFSET | 0x006) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /* Change mode informations */ T_SUBSCRIBER_ID subscriber_id; T_KPD_VIRTUAL_KEY_TABLE notified_keys; T_KPD_MODE new_mode; } T_KPD_CHANGE_MODE_MSG; /*@}*/ /** * @name KPD_OWN_KEYPAD_MSG * * Internal message. * * Message issued by KPD to KPD task. * This message is used to define the subscriber as the owner of the keypad. */ /*@{*/ /** Message ID. */ #define KPD_OWN_KEYPAD_MSG (KPD_MESSAGES_OFFSET | 0x007) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /* Own keypad informations */ T_SUBSCRIBER_ID subscriber_id; BOOL is_keypad_owner; T_KPD_VIRTUAL_KEY_TABLE keys_owner; } T_KPD_OWN_KEYPAD_MSG; /*@}*/ /** * @name KPD_SET_CONFIG_MODE_MSG * * Internal message. * * Message issued by KPD to KPD task. * This message is used to define the configurable mode with a set of keys. */ /*@{*/ /** Message ID. */ #define KPD_SET_CONFIG_MODE_MSG (KPD_MESSAGES_OFFSET | 0x008) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /* New config mode informations */ T_SUBSCRIBER_ID subscriber_id; T_KPD_VIRTUAL_KEY_TABLE reference_keys; T_KPD_VIRTUAL_KEY_TABLE new_keys; } T_KPD_SET_CONFIG_MODE_MSG; /*@}*/ /** * @name T_KPD_KEY_PRESSED_MSG * * Internal message. * * Message issued by HISR to KPD task. * This message is used by the Keypad HISR to inform the keypad task * that a key is pressed. */ /*@{*/ /** Message ID. */ #define KPD_KEY_PRESSED_MSG (KPD_MESSAGES_OFFSET | 0x009) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /* Physical key pressed Id, or KPD_PKEY_NULL if key is released. Note that this variable is used only for PC Riviera Tool, but is not in flag compilation for forward compatibility (Calypso+, IT when key is pressed and released) */ T_KPD_PHYSICAL_KEY_ID value; /* Define if key must be processd or not. This field is used in order to limit memory use, and allow keypad task to send messages to subscribers */ BOOL key_to_process; } T_KPD_KEY_PRESSED_MSG; /*@}*/ #endif /* _KPD_MESSAGES_I_H_ */