...
The new keywords should appear in the user configuration file btcall.cfg as follows:
xmt_level_override E42
rcv_level_overrideĀ AC2
The above value of 2 for xmt_level_override means that the transmit level will be increased by (2 * 0.5 dB = 1 dB).
The above value of 2 for rcv_level_override means that the receive level will be increased by (2 * 0.5 dB = 1 dB).
For the second way, two new members will be defined for the structure args_fax_t30_params. For the fax transmission level the new member will be defined as char xmt_level and for the fax reception level the new member will be defined as char rcv_level.
...
struct args_fax_t30_params args_params;
BT_ZERO(args_params);
args_params.xmt_level = 0xE44;
args_params.rcv_level = 0xAC4;
// Set other parameters here such as bit_rate, scan_time, etc.
BfvFaxT30Params(lp, &args_params);
The above example will increase the transmit level by (4 * 0.5 dB = 2 dB) and increase the receive level by (4 * 0.5 dB = 2 dB).
Questions
Below is a list of questions to be addressed as a result of this requirements document:
...