OP25 DMR

Status
Not open for further replies.
Joined
Aug 25, 2016
Messages
55
Reaction score
10
When using ./multi_rx.py dmr_rtl_example.json to recieve DMR, I get this error:

Code:
Traceback (most recent call last):
  File "./multi_rx.py", line 402, in <module>
    rx = rx_main()
  File "./multi_rx.py", line 384, in __init__
    config = json.loads(open(options.config_file).read())
TypeError: coercing to Unicode: need string or buffer, NoneType found

This happens with my modified JSON file and with the dmr_rtl_example.json file unmodified from the install.

Thanks for your help.
 

boatbod

Member
Joined
Mar 3, 2007
Messages
3,718
Reaction score
1,123
Location
Talbot Co, MD
When using ./multi_rx.py dmr_rtl_example.json to recieve DMR, I get this error:

Code:
Traceback (most recent call last):
  File "./multi_rx.py", line 402, in <module>
    rx = rx_main()
  File "./multi_rx.py", line 384, in __init__
    config = json.loads(open(options.config_file).read())
TypeError: coercing to Unicode: need string or buffer, NoneType found

This happens with my modified JSON file and with the dmr_rtl_example.json file unmodified from the install.

Thanks for your help.
Command line incorrect?
Try this:
Code:
./multi_rx.py -c dmr_rtl_example.json 2> stderr.2
 
Status
Not open for further replies.
Top