lte,phy: Add CFR to srsue LTE UL
This commit adds the configuration steps needed to enable
and configure the CFR module for the srsue's uplink signal.
Parsing of the CFR manual threshold has been streamlined.
("cfr.manual_thres",bpo::value<float>(&args->phy.cfr_args.manual_thres)->default_value(args->phy.cfr_args.manual_thres),"Fixed manual clipping threshold for CFR manual mode")
("cfr.strength",bpo::value<float>(&args->phy.cfr_args.strength)->default_value(args->phy.cfr_args.strength),"CFR ratio between amplitude-limited vs original signal (0 to 1)")
("cfr.auto_target_papr",bpo::value<float>(&args->phy.cfr_args.auto_target_papr)->default_value(args->phy.cfr_args.auto_target_papr),"Signal PAPR target (in dB) in CFR auto modes")
("cfr.ema_alpha",bpo::value<float>(&args->phy.cfr_args.ema_alpha)->default_value(args->phy.cfr_args.ema_alpha),"Alpha coefficient for the power average in auto_ema mode (0 to 1)")