medley56 / space_packet_parser

A CCSDS telemetry packet decoding library based on the XTCE packet format description standard.
https://space-packet-parser.readthedocs.io
Other
19 stars 5 forks source link

Issue suggestion when not opened in binary mode #3

Closed greglucas closed 1 year ago

greglucas commented 1 year ago

When a file is opened with open('test.xtce') an incompatible TextIO error is thrown. We should raise a useful message when we get this and tell the user to open it in binary mode open('test.xtce', 'rb')

greglucas commented 1 year ago

Duplicate of #2