>>Hi all,
>>
>>in my driver for our usb-serial converter I want to pass the received data
>>back.
>>But after every
>>tty_insert_flip_char(tty, data[i], 0);
>>call, my write method is called with data[i] or something else (0x5E, 0x40,
>>0x41 mostly).
>>
>>What could be the reason for this?
>>Who
On Fri, Jun 21, 2002 at 12:33:11PM +0200, Thomas Wahrenbruch wrote:
> Hi all,
>
> in my driver for our usb-serial converter I want to pass the received data
> back.
> But after every
> tty_insert_flip_char(tty, data[i], 0);
> call, my write method is called with data[i] or something else (0x5E,
Hi all,
in my driver for our usb-serial converter I want to pass the received data back.
But after every
tty_insert_flip_char(tty, data[i], 0);
call, my write method is called with data[i] or something else (0x5E, 0x40, 0x41
mostly).
What could be the reason for this?
Who calls my write method?