Add more baud rates into configtool

Minor adjustment by Traumflug: use '115200' instead of
self.defaultBaud.
This commit is contained in:
Wurstnase 2016-12-04 14:13:57 +01:00 committed by Markus Hitter
parent 3f52d75cf7
commit 6d1fa83c0e
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ class CommunicationsPage(wx.Panel, Page):
self.id = idPg self.id = idPg
self.defaultBaud = '115200' self.defaultBaud = '115200'
self.bauds = ['19200', '38400', '57600', self.defaultBaud] self.bauds = ['19200', '38400', '57600', '115200', '230400', '250000']
self.labels = {'XONXOFF': "XON/XOFF Flow Control", 'BAUD': "Baud Rate:", self.labels = {'XONXOFF': "XON/XOFF Flow Control", 'BAUD': "Baud Rate:",
'USB_SERIAL': "USB Serial"} 'USB_SERIAL': "USB Serial"}