-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathmavutil.py
58 lines (47 loc) · 1.73 KB
/
mavutil.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
'''
mavlink python utility functions
Copyright Andrew Tridgell 2011-2019
Released under GNU LGPL version 3 or later
'''
from __future__ import print_function
#from builtins import object
import socket, math, struct, time, os, fnmatch, array, sys, errno
import select
import copy
import re
# adding these extra imports allows pymavlink to be used directly with pyinstaller
# without having complex spec files. To allow for installs that don't have ardupilotmega
# at all we avoid throwing an exception if it isn't installed
try:
import json
from pymavlink.dialects.v10 import ardupilotmega
except Exception:
pass
# maximum packet length for a single receive call - use the UDP limit
UDP_MAX_PACKET_LEN = 65535
# Store the MAVLink library for the currently-selected dialect
# (set by set_dialect())
mavlink = None
# Store the mavlink file currently being operated on
# (set by mavlink_connection())
mavfile_global = None
# If the caller hasn't specified a particular native/legacy version, use this
default_native = False
# link_id used for signing
global_link_id = 0
class param_state(object):
'''state for a particular system id/component id pair'''
def __init__(self):
self.params = {}
class mavfile(object):
'''a generic mavlink port'''
def __init__(self, fd, address, source_system=255, source_component=0, notimestamps=False, input=True, use_native=default_native):
global mavfile_global
if input:
mavfile_global = self
def param(self, name, default=None):
'''convenient function for returning an arbitrary MAVLink
parameter with a default'''
return default
mavfile(None, None)