-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuwfload.py
62 lines (52 loc) · 2.28 KB
/
uwfload.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
59
60
61
62
#!/usr/bin/env python3
"""
This is a command line tool for downloading firmware to Laird "SmartBASIC" devices.
Usage: python3 uwfload.py serialport baudrate model filepath
port example on windows would be COM123
baudrate e.g. 115200
model one of BL652,BL653,BL654,BL654IG,RM1XX,BT900,GENERIC
filepath path and name of .uwf file (delimited by "" if space in name)
Original works by:
uwf_processer_*.py, uwfloader.py
Moses Corriea of Laird Connectivity.
Subsequently enhanced by:
Mahendra Tailor
"""
##########################################################################################
# Copyright (C)2014 Angus Gratton, released under BSD license as per the LICENSE file.
##########################################################################################
#-----------------------------------------------------------------------------
# constants
#-----------------------------------------------------------------------------
VERBOSELEVEL=0
DEFAULT_MODULE='BL654'
#-----------------------------------------------------------------------------
# Module imports
#-----------------------------------------------------------------------------
import uwfloader
import os
import sys
import serial
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
def main():
if len(sys.argv) != 5:
print(f"Usage: python3 {sys.argv[0]} serialport baudrate model filepath")
print(' [serialport] is like COM12 on Windows, or /dev/ttyUSB34 on Linux')
print(' [baudrate] is like 115200')
print(' [model] is one of BL652,BL653,BL654,BL654IG,RM1XX,BT900,GENERIC')
print(' Delimit [filepath] with "" when it contains spaces')
else:
#download firmware
uwfloader.loadfirmware(sys.argv[1],sys.argv[2],sys.argv[4],sys.argv[3])
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
if __name__ == "__main__":
try:
main()
except RuntimeError as e:
print(e)
sys.exit(2)
except serial.SerialException as e:
print(e)
sys.exit(3)