mavlink_shell.py: default to 57600 baudrate

This commit is contained in:
Julian Oes 2016-10-22 19:01:58 +02:00 committed by Lorenz Meier
parent 06ad477847
commit 3aa9a72562
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ def main():
help='Mavlink port name: serial: DEVICE[,BAUD], udp: IP:PORT, tcp: tcp:IP:PORT. Eg: \
/dev/ttyUSB0 or 0.0.0.0:14550. Auto-detect serial if not given.')
parser.add_argument("--baudrate", "-b", dest="baudrate", type=int,
help="Mavlink port baud rate (default=115200)", default=115200)
help="Mavlink port baud rate (default=57600)", default=57600)
args = parser.parse_args()