aboutsummaryrefslogtreecommitdiff
path: root/comport/comport.c
diff options
context:
space:
mode:
authorMartin Peach <mrpeach@users.sourceforge.net>2006-08-24 16:48:49 +0000
committerMartin Peach <mrpeach@users.sourceforge.net>2006-08-24 16:48:49 +0000
commitefb7b3b4694035afabadbedf961e6a2fadda550b (patch)
tree8ea7f57865f496382e6ed34895fd9be6b8315f35 /comport/comport.c
parent69ceaa63847fbf3a9706533faad32c0de73f4a2a (diff)
Added call to clock_delay in comport_devicename
svn path=/trunk/externals/iem/comport/; revision=5733
Diffstat (limited to 'comport/comport.c')
-rw-r--r--comport/comport.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/comport/comport.c b/comport/comport.c
index dd31015..70d22a3 100644
--- a/comport/comport.c
+++ b/comport/comport.c
@@ -10,6 +10,7 @@ MP 20060619 implemented status outlet
MP 20060620 Add DTR and RTS control, add outputs to reflect CTS and DSR states.
MP 20060621 Do all the above for Windows too.
MP 20060709 All status goes out the status outlet when an info message is received
+MP 20060824 added clock_delay call in comport_devicename
*/
#include "m_pd.h"
@@ -1208,6 +1209,7 @@ static void comport_devicename(t_comport *x, t_symbol *s)
{
x->serial_device = s;
x->comhandle = open_serial(9999,x);
+ clock_delay(x->x_clock, x->x_deltime);
}
static void comport_print(t_comport *x, t_symbol *s, int argc, t_atom *argv)