op25/op25/gr-op25_repeater/apps/tx/generate-tsbks.py

21 lines
422 B
Python
Raw Normal View History

2022-09-25 22:53:44 +00:00
#! /usr/bin/python3
2014-06-13 00:46:23 +00:00
from p25craft import make_fakecc_tsdu
# should generate file p25.out
if __name__ == '__main__':
params = {
'wacn' : 0xbee00,
'system_id': 0x290,
2021-12-11 00:08:14 +00:00
'cc_freq': 924975000,
'vc_freq': 924925000,
2014-06-13 00:46:23 +00:00
'nac': 0x293,
'subsystem_id': 1,
2020-08-02 19:49:05 +00:00
'site_id': 1,
'iden_up_bw' : 12500,
'iden_up_tx_offset' : 25, # MHz
'iden_up_spacing' : 12500,
'iden_up_frequency' : 902012500}
2014-06-13 00:46:23 +00:00
make_fakecc_tsdu(params)