aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <ikj1234i@yahoo.com>2017-11-09 21:12:03 -0500
committerMax <ikj1234i@yahoo.com>2017-11-09 21:12:03 -0500
commit8fc19951819f50bcbd6475a4f1ed78990966f584 (patch)
treecb9d63f55adf4cff7aa3d152b7ac691d3f458c34
parenta3cab238b505fb4f06951a7826bce40d0d437f6b (diff)
p25 tx touch up
-rwxr-xr-xop25/gr-op25_repeater/apps/tx/dv_tx.py2
-rwxr-xr-xop25/gr-op25_repeater/apps/tx/op25_c4fm_mod.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/op25/gr-op25_repeater/apps/tx/dv_tx.py b/op25/gr-op25_repeater/apps/tx/dv_tx.py
index d3f6082..4667d4a 100755
--- a/op25/gr-op25_repeater/apps/tx/dv_tx.py
+++ b/op25/gr-op25_repeater/apps/tx/dv_tx.py
@@ -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 = {
diff --git a/op25/gr-op25_repeater/apps/tx/op25_c4fm_mod.py b/op25/gr-op25_repeater/apps/tx/op25_c4fm_mod.py
index ace2be3..2c77bd5 100755
--- a/op25/gr-op25_repeater/apps/tx/op25_c4fm_mod.py
+++ b/op25/gr-op25_repeater/apps/tx/op25_c4fm_mod.py
@@ -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: