From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Tue Mar 14 23:21:43 2006 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Tue Mar 14 23:21:43 2006 Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx@linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Tue Mar 14 23:21:43 2006 Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Tue Mar 14 23:21:43 2006 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley@8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx@linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx@linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Tue Mar 14 23:21:43 2006 Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx@linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Tue Mar 14 23:21:43 2006 Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley@8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx@linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx@linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx@linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Tue Mar 28 18:25:02 2006 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Tue Mar 28 18:25:02 2006 Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx@linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Tue Mar 28 18:25:02 2006 Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Tue Mar 28 18:25:02 2006 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley@8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx@linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx@linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Tue Mar 28 18:25:02 2006 Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx@linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Tue Mar 28 18:25:02 2006 Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley@8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx@linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx@linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx@linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Tue Mar 28 20:17:03 2006 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Tue Mar 28 20:17:03 2006 Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx@linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Tue Mar 28 20:17:03 2006 Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Tue Mar 28 20:17:03 2006 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley@8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx@linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx@linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Tue Mar 28 20:17:03 2006 Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx@linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Tue Mar 28 20:17:03 2006 Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley@8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx@linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx@linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx@linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From ripley at 8d.com Fri May 9 07:58:28 2003 From: ripley at 8d.com (Nicolas) Date: Fri, 9 May 2003 09:58:28 -0400 Subject: [Rxtx] Adding a new baud rate Message-ID: <200305090958.29190.ripley@8d.com> I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro From taj at linuxgrrls.org Fri May 9 09:17:31 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:17:31 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <200305090958.29190.ripley@8d.com> References: <200305090958.29190.ripley@8d.com> Message-ID: UARTs are capable of doing many baud rates. It's usually the kernels that are less capable. The hardware just wants a couple things; the baud base and divisor. When you set a baud rate the kernel sets the baud base and divisor. On w32 you pass the baud rate requested to the kernel and it somehow tries to guess the best way to do it. glinux gives the programmer access to the baud base and divisor. Solaris just lets you use predifined buad rates as far as I can tell. So the answer is maybe it can be done. For the next release we will try to guess baud_base/divisor on glinux, pass the value to w32 kernels and bail on Solaris unless its defined. On Fri, 9 May 2003, Nicolas wrote: > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From jasmine at regolith.co.uk Fri May 9 09:20:50 2003 From: jasmine at regolith.co.uk (Jasmine Strong) Date: Fri, 9 May 2003 16:20:50 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: Trent, have you seen these huge numbers of people being dropped for bouncing messages? I've not noticed anyone who should be on the list getting dropped off but it's as well to be sure. -J. From WCrucius at sandc.com Fri May 9 09:22:21 2003 From: WCrucius at sandc.com (Crucius, Wesley) Date: Fri, 9 May 2003 10:22:21 -0500 Subject: [Rxtx] Adding a new baud rate Message-ID: <2D7102AA9172D311A593009027B0C175558603@ms06> I thought that OBDII was CAN based (not UART based)? Wes -----Original Message----- From: Nicolas [mailto:ripley at 8d.com] Sent: Friday, May 09, 2003 8:58 AM To: rxtx at linuxgrrls.org Subject: [Rxtx] Adding a new baud rate I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's not standard on computer, but it's the baud rate used in OBDII (On Board Diagnostic version 2). It's the car/truc diagnostic system (since 1996). If I knew C I would try to do it, but it's not the case :o) Ripley -- Life is the living you do, Death is the living you don't do. -- Joseph Pintauro _______________________________________________ Rxtx mailing list Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx From taj at linuxgrrls.org Fri May 9 09:31:51 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:31:51 +0100 (BST) Subject: [Rxtx] Lots of drops In-Reply-To: References: <200305090958.29190.ripley@8d.com> Message-ID: I was reading through the drops. The list has been fairly quiet for a while. Some had full email boxes. Some had inactive accounts (create a amil account, send the question types). On Fri, 9 May 2003, Jasmine Strong wrote: > > Trent, have you seen these huge numbers of people being dropped for > bouncing messages? > > I've not noticed anyone who should be on the list getting dropped off but > it's as well to be sure. > > -J. > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx > From taj at linuxgrrls.org Fri May 9 09:39:01 2003 From: taj at linuxgrrls.org (Trent Jarvi) Date: Fri, 9 May 2003 16:39:01 +0100 (BST) Subject: [Rxtx] Adding a new baud rate In-Reply-To: <2D7102AA9172D311A593009027B0C175558603@ms06> References: <2D7102AA9172D311A593009027B0C175558603@ms06> Message-ID: I was assuming the OBDII board is connecting to a computer running rxtx not in the computer running rxtx. In the first case, my comments should be OK. I'm not sure about the second case. On Fri, 9 May 2003, Crucius, Wesley wrote: > > I thought that OBDII was CAN based (not UART based)? > > Wes > > -----Original Message----- > From: Nicolas [mailto:ripley at 8d.com] > Sent: Friday, May 09, 2003 8:58 AM > To: rxtx at linuxgrrls.org > Subject: [Rxtx] Adding a new baud rate > > > I'd like to know if it it possible to add a baudrate of 10400 in RXTX? It's > > not standard on computer, but it's the baud rate used in OBDII (On Board > Diagnostic version 2). It's the car/truc diagnostic system (since 1996). > > If I knew C I would try to do it, but it's not the case :o) > > Ripley > -- > Life is the living you do, Death is the living you don't do. > -- Joseph Pintauro > > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org http://undine.linuxgrrls.org/mailman/listinfo/rxtx > _______________________________________________ > Rxtx mailing list > Rxtx at linuxgrrls.org > http://undine.linuxgrrls.org/mailman/listinfo/rxtx >