|
libsangoma
1
|
Hardware Echo Canceller API Code Library for Sangoma AFT T1/E1/Analog/BRI hardware. More...
#include "libsangoma.h"#include "libsangoma-pvt.h"#include "wanpipe_includes.h"#include "wanpipe_events.h"#include "wanec_api.h"#include "wanec_iface_api.h"
Go to the source code of this file.
Functions | |
| void _LIBSNG_CALL | sangoma_hwec_initialize_custom_parameter_structure (wan_custom_param_t *custom_param, char *parameter_name, char *parameter_value) |
| Initialize Custom Paramter structure. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_config_init (char *device_name, wan_custom_param_t custom_params[], unsigned int number_of_custom_params) |
| Load Firmware image onto EC chip and allocated per-port resources in HWEC API. All chip-wide configuration paramters, if any, must be specified at the time of chip initialization. Note that Analog card is considered a "single-port" card by HWEC API. That means for Analog cards and for single-port digital cards only a single sangoma_hwec_config_init() call is required, all subsequent calls will have no effect. For multi-port cards, such as A102/A104/A108/A500, the sangoma_hwec_config_init() must be called for each port, at least one time. Only the first call will actually load the Firmware image onto EC chip, all subsequent calls (for other ports) will only add the Port to list of ports which use the HWEC API. Actions of sangoma_hwec_config_init() can be reversed by calling sangoma_hwec_config_release(). When Port is stopped, the HWEC API automatically releases per-port resources and removes the Port from list ports which use HWEC API. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_config_release (char *device_name) |
| Release resources allocated by sangoma_hwec_config_init(). For single-port cards, such as A101 and A200 (A200 is an Analog card and considered sinle-port by HWEC API), a single call to sangoma_hwec_config_release() will free the per-chip resources. For multi-port cards, such as A102/A104/A108/A500, sangoma_hwec_config_release() can be called for each port to remove it from list Ports which are using HWEC API. When sangoma_hwec_config_release() is called for the last Port which was "configured/initialized by HWEC API", the per-chip resources will be freed. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_config_operation_mode (char *device_name, int mode, unsigned int fe_chan_map) |
| Modify channel operation mode. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_config_power_on (char *device_name, unsigned int fe_chan_map) |
| Set the channel state in the echo canceller to NORMAL/POWER ON. This enables echo cancelation logic inside the chip. The action is internal to EC chip itself, not related to AFT FPGA. This call is slow and should be used only on startup. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_config_power_off (char *device_name, unsigned int fe_chan_map) |
| Set the channel state in the echo canceller to POWER OFF. This disables echo cancellatio logic inside the chip and data passes unmodified through the ec chip. The action is internal to EC chip itself, not related to AFT FPGA. This call is slow and should be used only on startup. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_enable (char *device_name, unsigned int fe_chan_map) |
| Redirect audio stream from AFT FPGA to EC chip. This command effectively enables echo cancellation since data is now forced through the EC chip by the FPGA. Data will be modified by the echo canceller. This command is recommened for fast enabling of Echo Cancellation. Note 1: Chip must be configured and in POWER ON state for echo Chancellation to take place. Note 2: sangoma_tdm_enable_hwec() function can be used to achive the same funcitnality based on file descriptor versus channel map. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_disable (char *device_name, unsigned int fe_chan_map) |
| Force AFT FPGA to bypass the echo canceller. This command effectively disables echo cancellation since data will not flowing through the ec chip. Data will not be modified by the echo canceller. This command is recommened for fast disabling of Echo Cancelation. Note: sangoma_tdm_disable_hwec() function can be use to achive the same functionality based on file descriptor versus channel map. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_config_channel_parameter (char *device_name, char *parameter, char *parameter_value, unsigned int channel_map) |
| Modify channel configuration parameters. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_config_tone_detection (char *device_name, int tone_id, int enable, unsigned int fe_chan_map, unsigned char port_map) |
| Enable/Disable tone detection (such as DTMF) of channels from channel map. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_print_statistics (char *device_name, int full, unsigned int fe_chan) |
| Read and print Chip/Channel statistics from EC chip. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_audio_buffer_load (char *device_name, char *filename, char pcmlaw, int *out_buffer_id) |
| Load audio buffer to EC chip. The buffer can be played out using the sangoma_hwec_audio_buffer_playout() function. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_audio_mem_buffer_load (char *device_name, unsigned char *buffer, unsigned int in_size, char pcmlaw, int *out_buffer_id) |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_audio_buffer_unload (char *device_name, int in_buffer_id) |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_audio_buffer_playout (char *device_name, unsigned int fe_chan_map, unsigned char port, int in_buffer_id, int start, int repeat_cnt, int duration) |
| Start playing out an audio buffer previously loaded by sangoma_hwec_audio_buffer_load(). More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_config_verbosity (int verbosity_level) |
| Set Verbosity level of EC API Driver and Library. The level controls amount of data printed to stdout and to wanpipelog.txt (Windows) or /var/log/messages (Linux) for diagnostic purposes. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_get_channel_statistics (sng_fd_t fd, unsigned int fe_chan, int *hwec_api_return_code, wanec_chan_stats_t *wanec_chan_stats, int verbose, int reset) |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_get_global_chip_statistics (sng_fd_t fd, int *hwec_api_return_code, wanec_chip_stats_t *wanec_chip_stats, int verbose, int reset) |
| Get Global statistics from EC chip. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_get_chip_image_info (sng_fd_t fd, int *hwec_api_return_code, wanec_chip_image_t *wanec_chip_image, int verbose) |
| Get information about Firmware Image of EC chip. More... | |
| sangoma_status_t _LIBSNG_CALL | sangoma_hwec_set_hwdtmf_removal (sng_fd_t fd, unsigned int fe_chan, int *hwec_api_return_code, int enable, int verbose) |
Hardware Echo Canceller API Code Library for Sangoma AFT T1/E1/Analog/BRI hardware.
Author(s): David Rokhvarg davidr@sangoma.com
Copyright: (c) 2005-2011 Sangoma Technologies Corporation
THIS SOFTWARE IS PROVIDED BY Sangoma Technologies ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Sangoma Technologies BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
Definition in file libsangoma_hwec.c.
| void _LIBSNG_CALL sangoma_hwec_initialize_custom_parameter_structure | ( | wan_custom_param_t * | custom_param, |
| char * | parameter_name, | ||
| char * | parameter_value | ||
| ) |
Initialize Custom Paramter structure.
| parameter_name | Parameter Name |
| parameter_value | Parameter Value |
Definition at line 166 of file libsangoma_hwec.c.
Referenced by sangoma_hwec_config_channel_parameter().

| sangoma_status_t _LIBSNG_CALL sangoma_hwec_config_init | ( | char * | device_name, |
| wan_custom_param_t | custom_params[], | ||
| unsigned int | number_of_custom_params | ||
| ) |
Load Firmware image onto EC chip and allocated per-port resources in HWEC API. All chip-wide configuration paramters, if any, must be specified at the time of chip initialization. Note that Analog card is considered a "single-port" card by HWEC API. That means for Analog cards and for single-port digital cards only a single sangoma_hwec_config_init() call is required, all subsequent calls will have no effect. For multi-port cards, such as A102/A104/A108/A500, the sangoma_hwec_config_init() must be called for each port, at least one time. Only the first call will actually load the Firmware image onto EC chip, all subsequent calls (for other ports) will only add the Port to list of ports which use the HWEC API. Actions of sangoma_hwec_config_init() can be reversed by calling sangoma_hwec_config_release(). When Port is stopped, the HWEC API automatically releases per-port resources and removes the Port from list ports which use HWEC API.
| device_name | Sangoma API device name. Windows: wanpipe1_if1, wanpipe2_if1... Note that wanpipe1_if1 and wanpipe1_if2 will access the same Port - wanpipe1. Linux: wanpipe1, wanpipe2... |
| custom_params[] | - (optional) array of custom paramter structures. This is list of Echo Cancellation chip parameters: Chip parameter Chip parameter value ================= ======================= WANEC_TailDisplacement 0-896 WANEC_MaxPlayoutBuffers 0-4678 WANEC_EnableExtToneDetection TRUE | FALSE WANEC_EnableAcousticEcho TRUE | FALSE |
| number_of_custom_params | - (optional) number of structures in custom_params[]. Minimum value is 1, maximum is 4, if any other value the custom_params[] will be ignored. |
Definition at line 215 of file libsangoma_hwec.c.
References SANG_STATUS_FAILED_ALLOCATE_MEMORY, and SANG_STATUS_SUCCESS.
| sangoma_status_t _LIBSNG_CALL sangoma_hwec_config_release | ( | char * | device_name | ) |
Release resources allocated by sangoma_hwec_config_init(). For single-port cards, such as A101 and A200 (A200 is an Analog card and considered sinle-port by HWEC API), a single call to sangoma_hwec_config_release() will free the per-chip resources. For multi-port cards, such as A102/A104/A108/A500, sangoma_hwec_config_release() can be called for each port to remove it from list Ports which are using HWEC API. When sangoma_hwec_config_release() is called for the last Port which was "configured/initialized by HWEC API", the per-chip resources will be freed.
| device_name | Sangoma API device name. Windows: wanpipe1_if1, wanpipe2_if1... Note that wanpipe1_if1 and wanpipe1_if2 will access the same Port - wanpipe1. Linux: wanpipe1, wanpipe2... |
Definition at line 283 of file libsangoma_hwec.c.
| sangoma_status_t _LIBSNG_CALL sangoma_hwec_config_operation_mode | ( | char * | device_name, |
| int | mode, | ||
| unsigned int | fe_chan_map | ||
| ) |
Modify channel operation mode.
Modify channel operation mode.
| mode | One of WANEC_API_OPMODE_? values defined in wanpipe_api_iface.h: WANEC_API_OPMODE_NORMAL, WANEC_API_OPMODE_HT_FREEZE, WANEC_API_OPMODE_HT_RESET, WANEC_API_OPMODE_POWER_DOWN, WANEC_API_OPMODE_NO_ECHO, WANEC_API_OPMODE_SPEECH_RECOGNITION. |
| fe_chan_map | Bitmap of channels (timeslots for Digital, lines for Analog) where the call will take effect. |
Definition at line 298 of file libsangoma_hwec.c.
Referenced by sangoma_hwec_config_power_off(), and sangoma_hwec_config_power_on().

| sangoma_status_t _LIBSNG_CALL sangoma_hwec_config_power_on | ( | char * | device_name, |
| unsigned int | fe_chan_map | ||
| ) |
Set the channel state in the echo canceller to NORMAL/POWER ON. This enables echo cancelation logic inside the chip. The action is internal to EC chip itself, not related to AFT FPGA. This call is slow and should be used only on startup.
| device_name | Sangoma API device name. Windows: wanpipe1_if1, wanpipe2_if1... Linux: wanpipe1, wanpipe2... |
| fe_chan_map | Bitmap of channels (timeslots for Digital, lines for Analog) where the call will take effect. |
Definition at line 338 of file libsangoma_hwec.c.
References sangoma_hwec_config_operation_mode().

| sangoma_status_t _LIBSNG_CALL sangoma_hwec_config_power_off | ( | char * | device_name, |
| unsigned int | fe_chan_map | ||
| ) |
Set the channel state in the echo canceller to POWER OFF. This disables echo cancellatio logic inside the chip and data passes unmodified through the ec chip. The action is internal to EC chip itself, not related to AFT FPGA. This call is slow and should be used only on startup.
| device_name | Sangoma API device name. Windows: wanpipe1_if1, wanpipe2_if1... Linux: wanpipe1, wanpipe2... |
| fe_chan_map | Bitmap of channels (timeslots for Digital, lines for Analog) where the call will take effect. |
Definition at line 361 of file libsangoma_hwec.c.
References sangoma_hwec_config_operation_mode().

| sangoma_status_t _LIBSNG_CALL sangoma_hwec_enable | ( | char * | device_name, |
| unsigned int | fe_chan_map | ||
| ) |
Redirect audio stream from AFT FPGA to EC chip. This command effectively enables echo cancellation since data is now forced through the EC chip by the FPGA. Data will be modified by the echo canceller. This command is recommened for fast enabling of Echo Cancellation. Note 1: Chip must be configured and in POWER ON state for echo Chancellation to take place. Note 2: sangoma_tdm_enable_hwec() function can be used to achive the same funcitnality based on file descriptor versus channel map.
Redirect audio stream from AFT FPGA to EC chip. This command effectively enables echo cancellation since data is now forced through the EC chip by the FPGA. Data will be modified by the echo canceller. This command is recommened for fast enabling of Echo Cancellation. Note 1: Chip must be configured and in POWER ON state for echo Chancellation to take place. Note 2: sangoma_tdm_enable_hwec() function can be use to achive the same funcitnality based on file descriptor versus channel map.
| device_name | Sangoma API device name. Windows: wanpipe1_if1, wanpipe2_if1... Linux: wanpipe1, wanpipe2... |
| fe_chan_map | Bitmap of channels (timeslots for Digital, lines for Analog) where the call will take effect. |
Definition at line 389 of file libsangoma_hwec.c.
| sangoma_status_t _LIBSNG_CALL sangoma_hwec_disable | ( | char * | device_name, |
| unsigned int | fe_chan_map | ||
| ) |
Force AFT FPGA to bypass the echo canceller. This command effectively disables echo cancellation since data will not flowing through the ec chip. Data will not be modified by the echo canceller. This command is recommened for fast disabling of Echo Cancelation. Note: sangoma_tdm_disable_hwec() function can be use to achive the same functionality based on file descriptor versus channel map.
Force AFT FPGA to bypass the echo canceller. This command effectively disables echo cancellation since data will not be flowing through the ec chip. Data will not be modified by the echo canceller. This command is recommened for fast disabling of Echo Cancelation. Note: sangoma_tdm_disable_hwec() function can be used to achive the same functionality based on file descriptor versus channel map.
| device_name | Sangoma API device name. Windows: wanpipe1_if1, wanpipe2_if1... Linux: wanpipe1, wanpipe2... |
| fe_chan_map | Bitmap of channels (timeslots for Digital, lines for Analog) where the call will take effect. |
Definition at line 416 of file libsangoma_hwec.c.
| sangoma_status_t _LIBSNG_CALL sangoma_hwec_config_channel_parameter | ( | char * | device_name, |
| char * | parameter, | ||
| char * | parameter_value, | ||
| unsigned int | channel_map | ||
| ) |
Modify channel configuration parameters.
| device_name | Sangoma API device name. Windows: wanpipe1_if1, wanpipe2_if1... Linux: wanpipe1, wanpipe2... |
| parameter | Echo Cancellation channel parameter |
This channel parameters are listed under "Channel parameter":
Channel parameter Channel parameter value ================= ======================= WANEC_EnableNlp TRUE | FALSE WANEC_EnableTailDisplacement TRUE | FALSE WANEC_TailDisplacement 0-896 WANEC_SoutLevelControl TRUE | FALSE WANEC_RinAutomaticLevelControl TRUE | FALSE WANEC_SoutAutomaticLevelControl TRUE | FALSE WANEC_SoutAdaptiveNoiseReduction TRUE | FALSE WANEC_RoutNoiseReduction TRUE | FALSE WANEC_ComfortNoiseMode COMFORT_NOISE_NORMAL COMFORT_NOISE_FAST_LATCH COMFORT_NOISE_EXTENDED COMFORT_NOISE_OFF WANEC_DtmfToneRemoval TRUE | FALSE WANEC_AcousticEcho TRUE | FALSE WANEC_NonLinearityBehaviorA 0-13 WANEC_NonLinearityBehaviorB 0-8 WANEC_DoubleTalkBehavior DT_BEH_NORMAL DT_BEH_LESS_AGGRESSIVE WANEC_AecTailLength 128 (default), 256, 512 or 1024 WANEC_EnableToneDisabler TRUE | FALSE
| parameter_value | channel parameter value, listed under "Channel parameter value" |
| fe_chan_map | Bitmap of channels (timeslots for Digital, lines for Analog) where the call will take effect. |
| device_name | Sangoma API device name. Windows: wanpipe1_if1, wanpipe2_if1... Linux: wanpipe1, wanpipe2... |
| parameter | Echo Cancellation channel parameter |
This is list of Echo Cancellation channel parameters:
Channel parameter Channel parameter value ================= ======================= WANEC_EnableNlp TRUE | FALSE WANEC_EnableTailDisplacement TRUE | FALSE WANEC_TailDisplacement 0-896 WANEC_SoutLevelControl TRUE | FALSE WANEC_RinAutomaticLevelControl TRUE | FALSE WANEC_SoutAutomaticLevelControl TRUE | FALSE WANEC_SoutAdaptiveNoiseReduction TRUE | FALSE WANEC_RoutNoiseReduction TRUE | FALSE WANEC_ComfortNoiseMode COMFORT_NOISE_NORMAL COMFORT_NOISE_FAST_LATCH COMFORT_NOISE_EXTENDED COMFORT_NOISE_OFF WANEC_DtmfToneRemoval TRUE | FALSE WANEC_AcousticEcho TRUE | FALSE WANEC_NonLinearityBehaviorA 0-13 WANEC_NonLinearityBehaviorB 0-8 WANEC_DoubleTalkBehavior DT_BEH_NORMAL DT_BEH_LESS_AGGRESSIVE WANEC_AecTailLength 128 (default), 256, 512 or 1024 WANEC_EnableToneDisabler TRUE | FALSE
| fe_chan_map | Bitmap of channels (timeslots for Digital, lines for Analog) where the call will take effect. |
Definition at line 464 of file libsangoma_hwec.c.
References sangoma_hwec_initialize_custom_parameter_structure().

| sangoma_status_t _LIBSNG_CALL sangoma_hwec_config_tone_detection | ( | char * | device_name, |
| int | tone_id, | ||
| int | enable, | ||
| unsigned int | fe_chan_map, | ||
| unsigned char | port_map | ||
| ) |
Enable/Disable tone detection (such as DTMF) of channels from channel map.
| device_name | Sangoma API device name. Windows: wanpipe1_if1, wanpipe2_if1... Linux: wanpipe1, wanpipe2... |
| tone_id | See wanpipe_api_iface.h for list of valid tones |
| enable | A flag, if 1 - the specified tone will be detected, if 0 - specified tone will not be detected. |
| fe_chan_map | Bitmap of channels (timeslots for Digital, lines for Analog) where the call will take effect. |
| port_map | Port of tone detection - Rx, Tx. See wanpipe_events.h for list of valid ports (WAN_EC_CHANNEL_PORT_SOUT...). |
Definition at line 505 of file libsangoma_hwec.c.
| sangoma_status_t _LIBSNG_CALL sangoma_hwec_print_statistics | ( | char * | device_name, |
| int | full, | ||
| unsigned int | fe_chan_map | ||
| ) |
Read and print Chip/Channel statistics from EC chip.
| device_name | Sangoma API device name. Windows: wanpipe1_if1, wanpipe2_if1... Linux: wanpipe1, wanpipe2... |
| full | Flag to read full statistics, if set to 1. |
| fe_chan | Channel number (a timeslot for Digital, a line for Analog) where the call will read statistics. Values from 1 to 31 will indicate the channel nuber. A value of zero will indicate request to print global chip statistics, not per-channel statistics. |
| device_name | Sangoma API device name. Windows: wanpipe1_if1, wanpipe2_if1... Linux: wanpipe1, wanpipe2... |
| full | Flag to read full statistics, if set to 1. |
| fe_chan_map | Bitmap of channels (timeslots for Digital, lines for Analog) where the call will read statistics. |
Definition at line 541 of file libsangoma_hwec.c.
| sangoma_status_t _LIBSNG_CALL sangoma_hwec_audio_buffer_load | ( | char * | device_name, |
| char * | filename, | ||
| char | pcmlaw, | ||
| int * | out_buffer_id | ||
| ) |
Load audio buffer to EC chip. The buffer can be played out using the sangoma_hwec_audio_buffer_playout() function.
| filename | name of the audio file (without the extension). Actual file must have .pcm extension. Location: Windows: SystemRoot% (ex: c:) Linux: /etc/wanpipe/buffers |
| out_buffer_id | when the buffer is loaded on the chip, it is assigned an ID. This ID should be used when requesting to play out the buffer. |
| buffer | Pointer to in memory buffer to be loaded on the chip. |
| size | Size of buffer. |
| out_buffer_id | when the buffer is loaded on the chip, it is assigned an ID. This ID should be used when requesting to play out the buffer. |
Definition at line 574 of file libsangoma_hwec.c.
References SANG_STATUS_SUCCESS.
| sangoma_status_t _LIBSNG_CALL sangoma_hwec_audio_buffer_playout | ( | char * | device_name, |
| unsigned int | fe_chan_map, | ||
| unsigned char | port_map, | ||
| int | buffer_id, | ||
| int | start, | ||
| int | repeat_cnt, | ||
| int | duration | ||
| ) |
Start playing out an audio buffer previously loaded by sangoma_hwec_audio_buffer_load().
| fe_chan_map | Bitmap of channels (timeslots for Digital, lines for Analog) where the call will take effect. |
| port_map | Port where the buffer will be played out. This is the channel port on which the buffer will be played (WAN_EC_CHANNEL_PORT_SOUT or WAN_EC_CHANNEL_PORT_ROUT) |
| in_buffer_id | ID of the buffer which will be unloaded. The ID must be initialized by sangoma_hwec_audio_bufferload(). |
| start | If 1 - start the play out, 0 - stop the play out |
| repeat_cnt | Number of times to play out the same buffer |
| duration | Maximum duration of the playout, in milliseconds. If it takes less then 'duration' to play out the whole buffer, it will be repeated to fill 'duration' amount of time. If 'duration' is set to non-zero, this parameter overrides the repeat_cnt flag. |
Definition at line 677 of file libsangoma_hwec.c.
References start().

| void _LIBSNG_CALL sangoma_hwec_config_verbosity | ( | int | verbosity_level | ) |
Set Verbosity level of EC API Driver and Library. The level controls amount of data printed to stdout and to wanpipelog.txt (Windows) or /var/log/messages (Linux) for diagnostic purposes.
Set Verbosity level of EC API. The level controls amount of data printed to stdout and wanpipelog.txt for diagnostic purposes.
| verbosity_level | Valid values are from 0 to 3. |
| verbosity_level | Valid values are from 0 to 3. |
Definition at line 712 of file libsangoma_hwec.c.
References SANG_STATUS_INVALID_PARAMETER, and SANG_STATUS_SUCCESS.
| sangoma_status_t _LIBSNG_CALL sangoma_hwec_get_global_chip_statistics | ( | sng_fd_t | fd, |
| int * | hwec_api_return_code, | ||
| wanec_chip_stats_t * | wanec_chip_stats, | ||
| int | verbose, | ||
| int | reset | ||
| ) |
Get Global statistics from EC chip.
| fd | device file descriptor |
| hwec_api_return_code | will contain one of WAN_EC_API_RC_x codes which are defined in wanec_iface_api.h |
| wanec_chip_stats | structure will be filled with HWEC channel statistics. |
| verbose | Flag indicating to the Driver to print additional information about the command into Wanpipe Log file. |
| reset | Flag to reset (flush) global statistics to zero, if set to 1. |
Definition at line 793 of file libsangoma_hwec.c.
References SANG_STATUS_SUCCESS.
| sangoma_status_t _LIBSNG_CALL sangoma_hwec_get_chip_image_info | ( | sng_fd_t | fd, |
| int * | hwec_api_return_code, | ||
| wanec_chip_image_t * | wanec_chip_image, | ||
| int | verbose | ||
| ) |
Get information about Firmware Image of EC chip.
| fd | device file descriptor |
| hwec_api_return_code | will contain one of WAN_EC_API_RC_x codes which are defined in wanec_iface_api.h |
| wanec_chip_image_t | structure will be filled with HWEC channel statistics. |
| verbose | Flag indicating to the Driver to print additional information about the command into Wanpipe Log file. |
Definition at line 843 of file libsangoma_hwec.c.
References SANG_STATUS_SUCCESS.
1.8.5