{
printf("Equalizer B:\n");
for (i = 0; i < len; i++)
+#if defined(SPANDSP_USE_FIXED_POINT)
printf("%3d (%15.5f, %15.5f)\n", i, coeffs[i].re/V27TER_CONSTELLATION_SCALING_FACTOR, coeffs[i].im/V27TER_CONSTELLATION_SCALING_FACTOR);
+#else
+ printf("%3d (%15.5f, %15.5f) -> %15.5f\n", i, coeffs[i].re, coeffs[i].im, powerf(&coeffs[i]));
+#endif
#if defined(ENABLE_GUI)
if (use_gui)
{
qam_monitor_update_equalizer(qam_monitor, coeffs, len);
#endif
}
+#endif
}
update_interval = 100;
}
-#endif
}
else
{
exit(2);
}
}
- return 0;
+ return 0;
}
/*- End of function --------------------------------------------------------*/
/*- End of file ------------------------------------------------------------*/