On Sat, 1 Jul 2000 14:24:54 +0500 (AMST), Tigran Zakaryan wrote:
>Hi all
>
>Does somebody successfully used run ppp at 921600 bps ?
>
>Thanx in advance
>
>Best regards

If you are running a linux system, try adding the 3 lines below:


-- existing lines in sys-linux.c ----
#ifdef B230400
    { 230400, B230400 },
#endif
#ifdef B460800
    { 460800, B460800 },
#endif

--- New lines to add ----
#ifdef B921600
    { 921600, B921600 },
#endif

--- start of existing lines ----
    { 0, 0 }
};

This will probably fix the code limitations, but I wonder what hardware you
have that will go that fast (I guess if you are doing 460800, that is
already faster than the ancient 16550 serial chip).

BobG

-
To unsubscribe from this list: send the line "unsubscribe linux-ppp" in
the body of a message to [EMAIL PROTECTED]

Reply via email to