apps/grgsm_trx: use 4 * GSM_SYM_RATE as default sample rate

With this sample rate it's easier to synchronize
training sequence with the signal.
This commit is contained in:
Vadim Yanitskiy 2017-12-03 23:13:08 +07:00
parent 4650fad7cb
commit 14b8e854c2
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ class Application:
base_port = 5700
# PHY specific
phy_sample_rate = 2000000
phy_sample_rate = 4 * 1625000 / 6
phy_tx_antenna = "TX/RX"
phy_rx_antenna = "RX2"
phy_rx_gain = 30
@ -101,7 +101,7 @@ class Application:
# PHY specific
s += " Radio interface specific\n" \
" -a --device-args Set device arguments\n" \
" -s --sample-rate Set sample rate (default 2000000)\n" \
" -s --sample-rate Set sample rate\n" \
" -g --rx-gain Set RX gain (default 30)\n" \
" -G --tx-gain Set TX gain (default 10)\n" \
" --rx-antenna Set RX antenna (default RX2)\n" \