From 41ffaed583e1908e9f038f20b74d991aa7de5750 Mon Sep 17 00:00:00 2001 From: Thomas Stilwell Date: Mon, 11 Nov 2019 16:40:33 -0600 Subject: [PATCH] dist/tools/ethos: fix typo for compiling baud rate 230400 --- dist/tools/ethos/ethos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/tools/ethos/ethos.c b/dist/tools/ethos/ethos.c index bef70d6955..2ed9b90fbc 100644 --- a/dist/tools/ethos/ethos.c +++ b/dist/tools/ethos/ethos.c @@ -324,7 +324,7 @@ static int _parse_baudrate(const char *arg, unsigned *baudrate) *baudrate = B115200; break; /* the following baudrates might not be available on all platforms */ - #ifdef B234000 + #ifdef B230400 case_baudrate(230400); #endif #ifdef B460800