mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
22 lines
516 B
Python
Executable File
22 lines
516 B
Python
Executable File
#!/usr/bin/env python
|
|
"""
|
|
This converts a binary imagge to an object file
|
|
"""
|
|
from __future__ import print_function
|
|
import subprocess
|
|
import argparse
|
|
import os
|
|
|
|
#pylint: disable=invalid-name
|
|
parser = argparse.ArgumentParser(description='Convert bin to obj.')
|
|
parser.add_argument('--c-flags', required=True)
|
|
parser.add_argument('--c-compiler', required=True)
|
|
parser.add_argument('--nm', required=True)
|
|
args = parser.parse_args()
|
|
|
|
#TODO write function
|
|
|
|
exit(0)
|
|
|
|
# vim: set et ft=python fenc= ff=unix sts=4 sw=4 ts=4 :
|