analyse_serial_gps_info add python

This commit is contained in:
xw_y_am 2019-03-12 00:48:05 +08:00
parent 80abce0756
commit c22b06f158

View File

@ -0,0 +1,17 @@
def match(s):
return s.find('qxwz_response') > -1
def sub(s):
pos = s.find('$')
if pos < 0:
return ''
return s[pos + 1:]
def split(s):
return list(s.strip().split(','))
if __name__ == '__main__':
for line in open('1fps.txt'):
if match(line):
print(split(sub(line)))