mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
7291aa0d00
* Avoid hardcoding the path to the python executable on the shebang line * Using __with open() as__ automates file close().
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]))
|