From 073bf0aed2d1decbcb56f21faf90b763ebbf935c Mon Sep 17 00:00:00 2001 Message-Id: <073bf0aed2d1decbcb56f21faf90b763ebbf935c.1714704532.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 30 Jan 2002 09:25:15 +0000 Subject: [PATCH] Modify for new transport configuration. Set PowerJog parameters as the default. Organization: Straylight/Edgeware From: mdw --- tx-serial-unix.h | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/tx-serial-unix.h b/tx-serial-unix.h index b61e4ae..e9abc39 100644 --- a/tx-serial-unix.h +++ b/tx-serial-unix.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tx-serial-unix.h,v 1.1 2002/01/25 19:34:45 mdw Exp $ + * $Id: tx-serial-unix.h,v 1.2 2002/01/30 09:25:15 mdw Exp $ * * Unix/POSIX serial port transport * @@ -29,6 +29,10 @@ /*----- Revision history --------------------------------------------------* * * $Log: tx-serial-unix.h,v $ + * Revision 1.2 2002/01/30 09:25:15 mdw + * Modify for new transport configuration. Set PowerJog parameters as the + * default. + * * Revision 1.1 2002/01/25 19:34:45 mdw * Initial revision * @@ -64,7 +68,9 @@ extern void txsu_shutdown(void); -extern txport *txsu_create(const char */*file*/, const char */*config*/); +extern txport *txsu_create(const char */*file*/); +extern int txsu_configure(txport */*txg*/, + const char */*k*/, const char */*v*/); extern void *txsu_fetch(void */*txv*/); extern ssize_t txsu_write(txport */*txg*/, const void */*p*/, size_t /*sz*/); @@ -77,8 +83,9 @@ extern void txsu_destroy(txport */*txg*/); }; static txport_ops txsu_ops = { - TX_LIST, "serial-unix", txsu_fv, "9600:8-none-1", - txsu_create, txsu_fetch, txsu_write, txsu_destroy + TX_LIST, "serial-unix", txsu_fv, + "flow=none;baud=9600;format=8-odd-1;newline=cr", + txsu_create, txsu_configure, txsu_fetch, txsu_write, txsu_destroy }; # undef TX_LIST # define TX_LIST &txsu_ops -- [mdw]