From 03e5f9a495ccb6df9df893f4bfeafea6a48502b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Thu, 28 Sep 2000 00:43:15 +0000 Subject: [PATCH] added 2400bauds support git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@158 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- common/serial.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/serial.c b/common/serial.c index 04c1bebbe..5a8b23bf2 100644 --- a/common/serial.c +++ b/common/serial.c @@ -5,7 +5,7 @@ * Provides useful routines for read/write serial data for communicating * via serial interface . * - * $Id: serial.c,v 1.15 2000-09-23 02:45:20 javabear Exp $ + * $Id: serial.c,v 1.16 2000-09-28 00:43:15 f4cfe Exp $ * * * This program is free software; you can redistribute it and/or @@ -93,6 +93,9 @@ int serial_open(struct rig_state *rs) { case 1200: speed = B1200; break; + case 2400: + speed = B2400; + break; case 4800: speed = B4800; break;