iqbal: Move the SDR# comment to the Doxygen file header

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2013-06-16 22:48:59 +02:00
parent f54f7ff873
commit 59e29c2043
1 changed files with 10 additions and 11 deletions

View File

@ -28,6 +28,16 @@
/*! \file iqbal.c
* \brief IQ balance utils implementation
*
* The actual algorithm used for estimation of the imbalance and its
* optimization is inspired by the IQ balancer of SDR# by Youssef Touil
* and described here :
*
* http://sdrsharp.com/index.php/automatic-iq-correction-algorithm
*
* The main differences are:
* - Objective function uses complex correlation of left/right side of FFT
* - Optimization based on steepest gradient with dynamic step size
*/
#include <complex.h>
@ -207,17 +217,6 @@ osmo_iqbal_cxvec_estimate(const struct osmo_cxvec *sig,
/* IQ balance optimization */
/* ------------------------------------------------------------------------ */
/*
* The actual algorithm used here is inspired by the IQ balancer of SDR#
* by Youssef Touil and described here :
*
* http://sdrsharp.com/index.php/automatic-iq-correction-algorithm
*
* The main differences are:
* - Objective function uses complex correlation of left/right side of FFT
* - Optimization based on steepest gradient with dynamic step size
*/
/*! \brief Default values for the optimization algorithm */
const struct osmo_iqbal_opts osmo_iqbal_default_opts = {
.fft_size = 1024,