p25 tx touch up

This commit is contained in:
Max 2017-11-09 21:12:03 -05:00
parent a3cab238b5
commit 8fc1995181
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ RC_FILTER = {'dmr': 'rrc', 'p25': 'rc', 'ysf': 'rrc', 'dstar': None}
output_gains = {
'dmr': 5.5,
'dstar': 0.95,
'p25': 5.0,
'p25': 4.5,
'ysf': 5.5
}
gain_adjust = {

View File

@ -203,7 +203,7 @@ class p25_mod_bf(gr.hier_block2):
if rc:
coeffs = filter.firdes.root_raised_cosine(1.0, output_sample_rate, input_sample_rate, 0.2, 91)
if rc == 'rc':
coeffs = np.convolve(coeffs, coeffs)
coeffs = c4fm_taps(sample_rate=output_sample_rate).generate()
elif self.dstar:
coeffs = gmsk_taps(sample_rate=output_sample_rate, bt=self.bt).generate()
elif not rc: