SD (software-defined) radio receivers use a bare minimum of hardware, relying instead on their software capabilities. This SDR project demonstrates what’s achievable, in this case a multi-purpose receiver covering all bands from 150 kHz to 30 MHz. It’s been optimised for receiving DRM and AM broadcasts but is also suitable for listening in to the world of amateur transmissions.
www.nti-online.de/diraboxsdr.htm
www.sdradio.org
sourceforge.net/projects/drm
www.g8jcf.dyndns.org
Roll Rate
File: In sw/airborne/fw_h_ctl.c we define the roll rate loop: float cmd = throttle_dep_pgain * ( err + h_ctl_roll_rate_igain * roll_rate_sum_err / H_CTL_ROLL_RATE_SUM_NB_SAMPLES + h_ctl_roll_rate_dgain * d_err);Note that the roll Pgain is variable with throttle and multiplies through the entire equation affecting the I and D terms as well for ease of tuning.