tools: Allow pyboard constructor to take a baudrate parameter.
This allows pyboard.py to be used over a UART interface rather than just over a USB serial interface.
This commit is contained in:
parent
70446f46c2
commit
669dbca959
@ -41,8 +41,8 @@ class PyboardError(BaseException):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
class Pyboard:
|
class Pyboard:
|
||||||
def __init__(self, serial_device):
|
def __init__(self, serial_device, baudrate=115200):
|
||||||
self.serial = serial.Serial(serial_device, baudrate=115200, interCharTimeout=1)
|
self.serial = serial.Serial(serial_device, baudrate=baudrate, interCharTimeout=1)
|
||||||
|
|
||||||
def close(self):
|
def close(self):
|
||||||
self.serial.close()
|
self.serial.close()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user