mirror of https://github.com/ArduPilot/ardupilot
18 lines
367 B
Python
Executable File
18 lines
367 B
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
|
|
if len(sys.argv) < 3:
|
|
print("Usage: ./mcm2bin.py clarity.mcm clarity.bin")
|
|
exit()
|
|
|
|
with open(sys.argv[1]) as inp:
|
|
content = inp.readlines()
|
|
|
|
content.pop(0)
|
|
|
|
with open(sys.argv[2], 'wb') as out:
|
|
for i, line in enumerate(content):
|
|
if i % 64 < 54:
|
|
b = int(line, 2)
|
|
out.write(bytearray([b]))
|