Jan Kiszka wrote:
> Anders Blomdell wrote:
>> Jan Kiszka wrote:
>>> Anders Blomdell wrote:
>>>> Are there any reason why the serial driver could not be changed to give an
>>>> event
>>>> when all characters has left the TX buffer?
>>> No, I don't think so. Somehow I have the feeling someone requested this
>>> feature before, but I cannot find any reference or even code ATM.
>>> However. Patch would be welcome.
>> OK, I'll see what I can do. Is patch against 2.4.2 OK (pressing deadline ->
>> I do
>> not have the time to uprade right now).
>
> Such a patch would currently apply against trunk as-is, at least /wrt
> 16550A - but I would take care of porting in any case.
>
>> My need for it is to make it possible to wait until all characters has left
>> the
>> FIFO (needed for autobaud detection), so perhaps a ioctl RTIOC_DRAIN
>> (similar to
>> RTIOC_PURGE) is a better choice (you decide what you prefer, and I'll try to
>> implement it)
>
> Hmm, for that particular use case I guess it shouldn't be problematic to
> wait the required time after writing some probe character(s).
>
> Otherwise, a blocking RTIOC_DRAIN sounds reasonable. That could become
> an (optional) common feature of all buffering RTDM devices.
OK, now I know why it is a bad idea. There is no way to get an interrupt when
all characters has left the FIFO and shift register (i.e. no interrupts on TEMT
indicator, and using THRE indicator means that there is still data waiting to
get out). So one could just as easily do it from user space. I.e. like:
while (1) {
int err;
struct rtser_status status;
err = rt_dev_ioctl(fd, RTSER_RTIOC_GET_STATUS, &status);
if (err < 0) { break; }
if (status.line_status & RTSER_LSR_TRANSM_EMPTY) { break; }
rt_task_sleep(1000000);
}
Sorry about the noise...
--
Anders Blomdell Email: [EMAIL PROTECTED]
Department of Automatic Control
Lund University Phone: +46 46 222 4625
P.O. Box 118 Fax: +46 46 138118
SE-221 00 Lund, Sweden
_______________________________________________
Xenomai-help mailing list
[email protected]
https://mail.gna.org/listinfo/xenomai-help