Add aerofc baudrate to list

Adding aerofc baudrate 921600 into the list
This commit is contained in:
Avinash Reddy Palleti 2018-02-15 13:44:27 +05:30 committed by Beat Küng
parent a04110cad1
commit 12c343317c
2 changed files with 3 additions and 1 deletions

View File

@ -103,6 +103,7 @@ const baudtype baudlist[] = {
[5] = {.code = B115200, .val = 115200},
[6] = {.code = B230400, .val = 230400},
[7] = {.code = B460800, .val = 460800},
[8] = {.code = B921600, .val = 921600},
};
struct options {

View File

@ -61,7 +61,8 @@ const baudtype baudlist[] = {
[4] = {.code = B57600, .val = 57600},
[5] = {.code = B115200, .val = 115200},
[6] = {.code = B230400, .val = 230400},
[7] = {.code = B460800, .val = 460800}
[7] = {.code = B460800, .val = 460800},
[8] = {.code = B921600, .val = 921600}
};
baudtype getbaudrate(const char *valstr);