"John Cameron" wrote in message news:CTeao7AKneG+EwxR@ob5.co.uk... > Hi, > > Is there any way of introducing an inter character delay between bytes > when transmitting? > -- > John
If you disable the output queueing (set output queue size negative with OpenComConfig) and write only a single byte, it should be emitted with very little delay as it will be written directly to the UART (serial port). You could then delay using Delay() or Sleep() and repeat the operation.