jmason86 / MinXSS_Beacon_Decoder

Beacon decoder for the MinXSS CubeSat in space; MinXSS-2 launch on 2018-11-19
http://lasp.colorado.edu/home/minxss
GNU General Public License v3.0
11 stars 6 forks source link

minxss_beacon_decoder.py KISS byte handling? #21

Closed K4KDR closed 5 years ago

K4KDR commented 5 years ago

Question ref. minxss_beacon_decoder.py file, line 239.

It is stated correctly that the KISS formatted file that many of us would be using as input to this decoder requires special handling of the "C0" and "DB" hex bytes.

However, should the following section of line 239:

bytearray([0xdd]

... more accurately be:

bytearray([0xdb]

???

K4KDR commented 5 years ago

22

jmason86 commented 5 years ago

Yep! Merged pull request. Thanks for catching that!