From 60feeed103a9cdca7a84f023dfcfd72f8568bc56 Mon Sep 17 00:00:00 2001 From: githubisviolatingthegpl <121033978+githubisviolatingthegpl@users.noreply.github.com> Date: Fri, 11 Aug 2023 14:49:42 +0000 Subject: [PATCH] Update trickle.h -> 921600 max baud --- trickle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trickle.h b/trickle.h index 3342bd9..cb1eb44 100644 --- a/trickle.h +++ b/trickle.h @@ -33,8 +33,8 @@ parseopts(int argc, char **argv, struct opts *opts) } } - if (rate < 50 || rate > 57600) { - fputs("bad -b, must be 50-57600\n", stderr); + if (rate < 50 || rate > 921600) { + fputs("bad -b, must be 50-921600\n", stderr); exit(1); }