<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-2013</id>
	<title>Nabble - CAN Bus</title>
	<updated>2009-12-22T10:57:20Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/CAN-Bus-f2013.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CAN-Bus-f2013.html" />
	<subtitle type="html">An independent discussion forum about Controller Area Network (CAN) and all related topics, especially questions concerning software tools and hardware configuration. Related embedded system topics and higher level protocols are also appropriate.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26893053</id>
	<title>Re: Absolute value in signals</title>
	<published>2009-12-22T10:57:20Z</published>
	<updated>2009-12-22T10:57:20Z</updated>
	<author>
		<name>fflinera</name>
	</author>
	<content type="html">Thanks to all people.
&lt;br&gt;&lt;br&gt;I think the main problem has been solved.
&lt;br&gt;&lt;br&gt;I write a CAPL file similar to this one situated before the &amp;quot;data output&amp;quot; in the measurement setup window:
&lt;br&gt;&lt;br&gt;variables
&lt;br&gt;{
&lt;br&gt;int prueba;
&lt;br&gt;int prueba2;
&lt;br&gt;}
&lt;br&gt;on message volante
&lt;br&gt;{
&lt;br&gt;&lt;br&gt;prueba = $volante::Angulo_volante_cs;
&lt;br&gt;prueba2 = $volante::Vel_volante_cs;
&lt;br&gt;@Angulo_volante = (prueba &amp; 0x8000) ? -0.04375*(prueba &amp; 0x7fff) :
&lt;br&gt;0.04375*(prueba &amp; 0x7fff);
&lt;br&gt;@Vel_volante = (prueba2 &amp; 0x8000) ? -0.04375*(prueba2 &amp; 0x7fff) :
&lt;br&gt;0.04375*(prueba2 &amp; 0x7fff);
&lt;br&gt;output(this);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Where Angulo_volante and Vel_volante are two new float environment signals. Angulo_volante_cs and Vel_volante_cs were the original signals (Sign_bit:Absolute_value).
&lt;br&gt;Now, I can see these environment signals in a data window and even in a log file.
&lt;br&gt;The aspect of the log file is:
&lt;br&gt;&lt;br&gt;&amp;nbsp; 9.898590 1 &amp;nbsp;C2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Rx &amp;nbsp; d 8 E8 83 E8 03 00 00 00 00
&lt;br&gt;&amp;nbsp; &amp;nbsp;9.950022 &amp;nbsp; &amp;nbsp;Angulo_volante := -43.75
&lt;br&gt;&amp;nbsp; &amp;nbsp;9.950022 &amp;nbsp; &amp;nbsp;Vel_volante &amp;nbsp;:= 43.75
&lt;br&gt;&lt;br&gt;Is possible to avoid that these two lines would be written to the log file?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Merry Christmas and Happy New Year.
&lt;br&gt;&lt;br&gt;&lt;br&gt;FRANCISCO FERNANDEZ LINERA
&lt;br&gt;Area de Tecnología Electronica (DIEECS)
&lt;br&gt;Universidad de Oviedo
&lt;br&gt;Campus de Viesques - Edificio Departamental 3
&lt;br&gt;33204 - Gijón
&lt;br&gt;SPAIN
&lt;br&gt;Phone: 34 985182565
&lt;br&gt;Fax: 34 985182138
&lt;br&gt;E-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26893053&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;linera@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;--- In &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26893053&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;CANbus@...&lt;/a&gt;, &amp;quot;John Dammeyer&amp;quot; &amp;lt;johnd@...&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi Bram,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It was early (for me) in the morning so I wasn't thinking overly
&lt;br&gt;&amp;gt; efficiently... &amp;nbsp;;-)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; John
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Automation Artisans Inc.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.autoartisans.com/ELS/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.autoartisans.com/ELS/&lt;/a&gt;&lt;br&gt;&amp;gt; Ph. 1 250 544 4950
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; &amp;gt; From: canlist-owner@...
&lt;br&gt;&amp;gt; &amp;gt; [mailto:canlist-owner@...] On
&lt;br&gt;&amp;gt; &amp;gt; Behalf Of Bram Kerkhof
&lt;br&gt;&amp;gt; &amp;gt; Sent: Tuesday, December 22, 2009 8:49 AM
&lt;br&gt;&amp;gt; &amp;gt; To: canlist@...
&lt;br&gt;&amp;gt; &amp;gt; Subject: RE: [CANLIST] Absolute value in signals
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I'm just nitpicking here, but you can drop that last 0x7fff. A smart
&lt;br&gt;&amp;gt; &amp;gt; compiler should drop it for you, but I'm not too sure how
&lt;br&gt;&amp;gt; &amp;gt; smart CANoe is
&lt;br&gt;&amp;gt; &amp;gt; exactly :-)... And just in case, I would add a 'u' after the masks.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; signedvalue = (invalue &amp; 0x8000u) ? -(invalue &amp; 0x7fffu) : invalue;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; (I've been busy with an embedded project lately, shaving off
&lt;br&gt;&amp;gt; &amp;gt; unnecessary
&lt;br&gt;&amp;gt; &amp;gt; code where I can find it ;-)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; cheers,
&lt;br&gt;&amp;gt; &amp;gt; Bram
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; &amp;gt; From: canlist-owner@...
&lt;br&gt;&amp;gt; &amp;gt; [mailto:canlist-owner@...] On Behalf Of John
&lt;br&gt;&amp;gt; &amp;gt; Dammeyer
&lt;br&gt;&amp;gt; &amp;gt; Sent: dinsdag 22 december 2009 16:05
&lt;br&gt;&amp;gt; &amp;gt; To: canlist@...
&lt;br&gt;&amp;gt; &amp;gt; Subject: RE: [CANLIST] Absolute value in signals
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; This should work...
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; signedinvalue = (invalue &amp; 0x8000) ? -(invalue &amp; 0x7fff) : invalue &amp;
&lt;br&gt;&amp;gt; &amp;gt; 0x7fff;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; John
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Automation Artisans Inc.
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.autoartisans.com/ELS/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.autoartisans.com/ELS/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Ph. 1 250 544 4950
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; From: canlist-owner@...
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; [mailto:canlist-owner@...] On
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Behalf Of fflinera
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Sent: Tuesday, December 22, 2009 3:23 AM
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; To: canlist@...
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Subject: [CANLIST] Absolute value in signals
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I am begginer using CANoe/CANalyzer.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; In a 2-byte CAN data, the information is:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; bit 16- variable sign (0-positive 1-negative)
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; bit 15-0 Absolute value for the variable
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; So, for instance, 8001h means -1 or 8010h means -16 or 0010
&lt;br&gt;&amp;gt; &amp;gt; means 16.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; This signal is part of a CAN message and I am trying to show
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; it in a data or graphics window in CANoe.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; If I use a 16-bit signed integer, It is no valid because we
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; use a 2-complement arithmetic.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; If I use a 16-bit unsigned integer, it is no valid because,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; for instance, 8001h does not mean -1.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I can use a 15-bit unsigned integer for the absolute value
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; and 1-bit value table for positive or negative. But I should
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; want the correct value (bit 16 multiplied by bit15-0).
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I am trying to use system variables or environment variables
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; to show the variable with its right value in a data/graphic
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; window. But I do not know how I must define.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Someone can help me.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Report any problems to &amp;lt;canlist-owner@...&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;&amp;gt; &amp;gt; Report any problems to &amp;lt;canlist-owner@...&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;&amp;gt; &amp;gt; Report any problems to &amp;lt;canlist-owner@...&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;&amp;gt; Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;&amp;gt; Report any problems to &amp;lt;canlist-owner@...&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26893053&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Absolute-value-in-signals-tp26887190p26893053.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26891616</id>
	<title>RE: Absolute value in signals</title>
	<published>2009-12-22T09:12:43Z</published>
	<updated>2009-12-22T09:12:43Z</updated>
	<author>
		<name>John Dammeyer</name>
	</author>
	<content type="html">Hi Bram,
&lt;br&gt;&lt;br&gt;It was early (for me) in the morning so I wasn't thinking overly
&lt;br&gt;efficiently... &amp;nbsp;;-) 
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Automation Artisans Inc.
&lt;br&gt;&lt;a href=&quot;http://www.autoartisans.com/ELS/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.autoartisans.com/ELS/&lt;/a&gt;&lt;br&gt;Ph. 1 250 544 4950
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt; 
&lt;br&gt;&amp;gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;] On 
&lt;br&gt;&amp;gt; Behalf Of Bram Kerkhof
&lt;br&gt;&amp;gt; Sent: Tuesday, December 22, 2009 8:49 AM
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: RE: [CANLIST] Absolute value in signals
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm just nitpicking here, but you can drop that last 0x7fff. A smart
&lt;br&gt;&amp;gt; compiler should drop it for you, but I'm not too sure how 
&lt;br&gt;&amp;gt; smart CANoe is
&lt;br&gt;&amp;gt; exactly :-)... And just in case, I would add a 'u' after the masks.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; signedvalue = (invalue &amp; 0x8000u) ? -(invalue &amp; 0x7fffu) : invalue;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (I've been busy with an embedded project lately, shaving off 
&lt;br&gt;&amp;gt; unnecessary
&lt;br&gt;&amp;gt; code where I can find it ;-)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; cheers,
&lt;br&gt;&amp;gt; Bram
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;
&lt;br&gt;&amp;gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;] On Behalf Of John
&lt;br&gt;&amp;gt; Dammeyer
&lt;br&gt;&amp;gt; Sent: dinsdag 22 december 2009 16:05
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: RE: [CANLIST] Absolute value in signals
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This should work...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; signedinvalue = (invalue &amp; 0x8000) ? -(invalue &amp; 0x7fff) : invalue &amp;
&lt;br&gt;&amp;gt; 0x7fff;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; John
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Automation Artisans Inc.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.autoartisans.com/ELS/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.autoartisans.com/ELS/&lt;/a&gt;&lt;br&gt;&amp;gt; Ph. 1 250 544 4950
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; &amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt; 
&lt;br&gt;&amp;gt; &amp;gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;] On 
&lt;br&gt;&amp;gt; &amp;gt; Behalf Of fflinera
&lt;br&gt;&amp;gt; &amp;gt; Sent: Tuesday, December 22, 2009 3:23 AM
&lt;br&gt;&amp;gt; &amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; Subject: [CANLIST] Absolute value in signals
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I am begginer using CANoe/CANalyzer.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; In a 2-byte CAN data, the information is:
&lt;br&gt;&amp;gt; &amp;gt; bit 16- variable sign (0-positive 1-negative)
&lt;br&gt;&amp;gt; &amp;gt; bit 15-0 Absolute value for the variable
&lt;br&gt;&amp;gt; &amp;gt; So, for instance, 8001h means -1 or 8010h means -16 or 0010 
&lt;br&gt;&amp;gt; means 16.
&lt;br&gt;&amp;gt; &amp;gt; This signal is part of a CAN message and I am trying to show 
&lt;br&gt;&amp;gt; &amp;gt; it in a data or graphics window in CANoe.
&lt;br&gt;&amp;gt; &amp;gt; If I use a 16-bit signed integer, It is no valid because we 
&lt;br&gt;&amp;gt; &amp;gt; use a 2-complement arithmetic.
&lt;br&gt;&amp;gt; &amp;gt; If I use a 16-bit unsigned integer, it is no valid because, 
&lt;br&gt;&amp;gt; &amp;gt; for instance, 8001h does not mean -1.
&lt;br&gt;&amp;gt; &amp;gt; I can use a 15-bit unsigned integer for the absolute value 
&lt;br&gt;&amp;gt; &amp;gt; and 1-bit value table for positive or negative. But I should 
&lt;br&gt;&amp;gt; &amp;gt; want the correct value (bit 16 multiplied by bit15-0).
&lt;br&gt;&amp;gt; &amp;gt; I am trying to use system variables or environment variables 
&lt;br&gt;&amp;gt; &amp;gt; to show the variable with its right value in a data/graphic 
&lt;br&gt;&amp;gt; &amp;gt; window. But I do not know how I must define.
&lt;br&gt;&amp;gt; &amp;gt; Someone can help me.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;&amp;gt; &amp;gt; Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;&amp;gt; Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;&amp;gt; Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;&amp;gt; Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;&amp;gt; Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=11&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891616&amp;i=12&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Absolute-value-in-signals-tp26887190p26891616.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26891485</id>
	<title>RE: Absolute value in signals</title>
	<published>2009-12-22T08:49:02Z</published>
	<updated>2009-12-22T08:49:02Z</updated>
	<author>
		<name>Bram Kerkhof</name>
	</author>
	<content type="html">I'm just nitpicking here, but you can drop that last 0x7fff. A smart
&lt;br&gt;compiler should drop it for you, but I'm not too sure how smart CANoe is
&lt;br&gt;exactly :-)... And just in case, I would add a 'u' after the masks.
&lt;br&gt;&lt;br&gt;signedvalue = (invalue &amp; 0x8000u) ? -(invalue &amp; 0x7fffu) : invalue;
&lt;br&gt;&lt;br&gt;(I've been busy with an embedded project lately, shaving off unnecessary
&lt;br&gt;code where I can find it ;-)
&lt;br&gt;&lt;br&gt;cheers,
&lt;br&gt;Bram
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891485&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;
&lt;br&gt;[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891485&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;] On Behalf Of John
&lt;br&gt;Dammeyer
&lt;br&gt;Sent: dinsdag 22 december 2009 16:05
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891485&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;
&lt;br&gt;Subject: RE: [CANLIST] Absolute value in signals
&lt;br&gt;&lt;br&gt;This should work...
&lt;br&gt;&lt;br&gt;signedinvalue = (invalue &amp; 0x8000) ? -(invalue &amp; 0x7fff) : invalue &amp;
&lt;br&gt;0x7fff;
&lt;br&gt;&lt;br&gt;John
&lt;br&gt;&lt;br&gt;Automation Artisans Inc.
&lt;br&gt;&lt;a href=&quot;http://www.autoartisans.com/ELS/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.autoartisans.com/ELS/&lt;/a&gt;&lt;br&gt;Ph. 1 250 544 4950
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891485&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt; 
&lt;br&gt;&amp;gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891485&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;] On 
&lt;br&gt;&amp;gt; Behalf Of fflinera
&lt;br&gt;&amp;gt; Sent: Tuesday, December 22, 2009 3:23 AM
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891485&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: [CANLIST] Absolute value in signals
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am begginer using CANoe/CANalyzer.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In a 2-byte CAN data, the information is:
&lt;br&gt;&amp;gt; bit 16- variable sign (0-positive 1-negative)
&lt;br&gt;&amp;gt; bit 15-0 Absolute value for the variable
&lt;br&gt;&amp;gt; So, for instance, 8001h means -1 or 8010h means -16 or 0010 means 16.
&lt;br&gt;&amp;gt; This signal is part of a CAN message and I am trying to show 
&lt;br&gt;&amp;gt; it in a data or graphics window in CANoe.
&lt;br&gt;&amp;gt; If I use a 16-bit signed integer, It is no valid because we 
&lt;br&gt;&amp;gt; use a 2-complement arithmetic.
&lt;br&gt;&amp;gt; If I use a 16-bit unsigned integer, it is no valid because, 
&lt;br&gt;&amp;gt; for instance, 8001h does not mean -1.
&lt;br&gt;&amp;gt; I can use a 15-bit unsigned integer for the absolute value 
&lt;br&gt;&amp;gt; and 1-bit value table for positive or negative. But I should 
&lt;br&gt;&amp;gt; want the correct value (bit 16 multiplied by bit15-0).
&lt;br&gt;&amp;gt; I am trying to use system variables or environment variables 
&lt;br&gt;&amp;gt; to show the variable with its right value in a data/graphic 
&lt;br&gt;&amp;gt; window. But I do not know how I must define.
&lt;br&gt;&amp;gt; Someone can help me.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;&amp;gt; Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;&amp;gt; Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891485&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891485&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26891485&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Absolute-value-in-signals-tp26887190p26891485.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26890111</id>
	<title>RE: Absolute value in signals</title>
	<published>2009-12-22T07:05:04Z</published>
	<updated>2009-12-22T07:05:04Z</updated>
	<author>
		<name>John Dammeyer</name>
	</author>
	<content type="html">This should work...
&lt;br&gt;&lt;br&gt;signedinvalue = (invalue &amp; 0x8000) ? -(invalue &amp; 0x7fff) : invalue &amp;
&lt;br&gt;0x7fff;
&lt;br&gt;&lt;br&gt;John
&lt;br&gt;&lt;br&gt;Automation Artisans Inc.
&lt;br&gt;&lt;a href=&quot;http://www.autoartisans.com/ELS/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.autoartisans.com/ELS/&lt;/a&gt;&lt;br&gt;Ph. 1 250 544 4950
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26890111&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt; 
&lt;br&gt;&amp;gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26890111&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;] On 
&lt;br&gt;&amp;gt; Behalf Of fflinera
&lt;br&gt;&amp;gt; Sent: Tuesday, December 22, 2009 3:23 AM
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26890111&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: [CANLIST] Absolute value in signals
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am begginer using CANoe/CANalyzer.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In a 2-byte CAN data, the information is:
&lt;br&gt;&amp;gt; bit 16- variable sign (0-positive 1-negative)
&lt;br&gt;&amp;gt; bit 15-0 Absolute value for the variable
&lt;br&gt;&amp;gt; So, for instance, 8001h means -1 or 8010h means -16 or 0010 means 16.
&lt;br&gt;&amp;gt; This signal is part of a CAN message and I am trying to show 
&lt;br&gt;&amp;gt; it in a data or graphics window in CANoe.
&lt;br&gt;&amp;gt; If I use a 16-bit signed integer, It is no valid because we 
&lt;br&gt;&amp;gt; use a 2-complement arithmetic.
&lt;br&gt;&amp;gt; If I use a 16-bit unsigned integer, it is no valid because, 
&lt;br&gt;&amp;gt; for instance, 8001h does not mean -1.
&lt;br&gt;&amp;gt; I can use a 15-bit unsigned integer for the absolute value 
&lt;br&gt;&amp;gt; and 1-bit value table for positive or negative. But I should 
&lt;br&gt;&amp;gt; want the correct value (bit 16 multiplied by bit15-0).
&lt;br&gt;&amp;gt; I am trying to use system variables or environment variables 
&lt;br&gt;&amp;gt; to show the variable with its right value in a data/graphic 
&lt;br&gt;&amp;gt; window. But I do not know how I must define.
&lt;br&gt;&amp;gt; Someone can help me.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;&amp;gt; Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;&amp;gt; Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26890111&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26890111&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Absolute-value-in-signals-tp26887190p26890111.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26888156</id>
	<title>RE: Absolute value in signals</title>
	<published>2009-12-22T04:45:11Z</published>
	<updated>2009-12-22T04:45:11Z</updated>
	<author>
		<name>Klüser, Jürgen-2</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;this seems to be a quite uncommon data type.
&lt;br&gt;My only idea in the moment is using a 15 bit unsigned plus a 1 bit signed variable. You can take both in a CAPL program, convert it e.g. to a 32 bit signed and write it to an environment variable which you can display in trace, data, graph...
&lt;br&gt;&lt;br&gt;Best regards
&lt;br&gt;Juergen
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26888156&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt; 
&lt;br&gt;&amp;gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26888156&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;] On 
&lt;br&gt;&amp;gt; Behalf Of fflinera
&lt;br&gt;&amp;gt; Sent: Tuesday, December 22, 2009 12:23 PM
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26888156&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: [CANLIST] Absolute value in signals
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am begginer using CANoe/CANalyzer.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In a 2-byte CAN data, the information is:
&lt;br&gt;&amp;gt; bit 16- variable sign (0-positive 1-negative)
&lt;br&gt;&amp;gt; bit 15-0 Absolute value for the variable
&lt;br&gt;&amp;gt; So, for instance, 8001h means -1 or 8010h means -16 or 0010 means 16.
&lt;br&gt;&amp;gt; This signal is part of a CAN message and I am trying to show 
&lt;br&gt;&amp;gt; it in a data or graphics window in CANoe.
&lt;br&gt;&amp;gt; If I use a 16-bit signed integer, It is no valid because we 
&lt;br&gt;&amp;gt; use a 2-complement arithmetic.
&lt;br&gt;&amp;gt; If I use a 16-bit unsigned integer, it is no valid because, 
&lt;br&gt;&amp;gt; for instance, 8001h does not mean -1.
&lt;br&gt;&amp;gt; I can use a 15-bit unsigned integer for the absolute value 
&lt;br&gt;&amp;gt; and 1-bit value table for positive or negative. But I should 
&lt;br&gt;&amp;gt; want the correct value (bit 16 multiplied by bit15-0).
&lt;br&gt;&amp;gt; I am trying to use system variables or environment variables 
&lt;br&gt;&amp;gt; to show the variable with its right value in a data/graphic 
&lt;br&gt;&amp;gt; window. But I do not know how I must define.
&lt;br&gt;&amp;gt; Someone can help me.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;&amp;gt; Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;&amp;gt; Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26888156&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26888156&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Absolute-value-in-signals-tp26887190p26888156.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26887190</id>
	<title>Absolute value in signals</title>
	<published>2009-12-22T03:22:47Z</published>
	<updated>2009-12-22T03:22:47Z</updated>
	<author>
		<name>fflinera</name>
	</author>
	<content type="html">I am begginer using CANoe/CANalyzer.
&lt;br&gt;&lt;br&gt;In a 2-byte CAN data, the information is:
&lt;br&gt;bit 16- variable sign (0-positive 1-negative)
&lt;br&gt;bit 15-0 Absolute value for the variable
&lt;br&gt;So, for instance, 8001h means -1 or 8010h means -16 or 0010 means 16.
&lt;br&gt;This signal is part of a CAN message and I am trying to show it in a data or graphics window in CANoe.
&lt;br&gt;If I use a 16-bit signed integer, It is no valid because we use a 2-complement arithmetic.
&lt;br&gt;If I use a 16-bit unsigned integer, it is no valid because, for instance, 8001h does not mean -1.
&lt;br&gt;I can use a 15-bit unsigned integer for the absolute value and 1-bit value table for positive or negative. But I should want the correct value (bit 16 multiplied by bit15-0).
&lt;br&gt;I am trying to use system variables or environment variables to show the variable with its right value in a data/graphic window. But I do not know how I must define.
&lt;br&gt;Someone can help me.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26887190&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Absolute-value-in-signals-tp26887190p26887190.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26775386</id>
	<title>RE: Environment vs system variables in CAPL</title>
	<published>2009-12-14T01:24:59Z</published>
	<updated>2009-12-14T01:24:59Z</updated>
	<author>
		<name>isto.virtanen</name>
	</author>
	<content type="html">
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Hello Jürgen,&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;I discussed with the person who needed
this information and we do have some PEX-licences already.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;In this case they would occasionally
want to use the same tool for logging and raw can data analysis (trace),
hence the question concerning Canalyzer.&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;isto&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;btw, Your response time is really impressive&amp;lt;g&amp;gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;table width=100%&gt;
&lt;tr valign=top&gt;
&lt;td&gt;&lt;font size=1 face=&quot;Default MultiLingual&quot;&gt;&lt;b&gt;Klüser, Jürgen&lt;/b&gt;&lt;/font&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;From:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;Klüser, Jürgen &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26775386&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Juergen.Klueser@...&lt;/a&gt;&amp;gt;&lt;/font&gt;
&lt;tr valign=top&gt;
&lt;td&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;To:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26775386&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;&amp;gt;&lt;/font&gt;
&lt;tr&gt;
&lt;td valign=top&gt;
&lt;td valign=top&gt;
&lt;td valign=top&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;Cc:&lt;/font&gt;
&lt;td&gt;
&lt;tr valign=top&gt;
&lt;td&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;Date:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;11.12.2009 13:46&lt;/font&gt;
&lt;tr valign=top&gt;
&lt;td&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;Subject:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;RE: [CANLIST] Environment vs system
variables in CAPL&lt;/font&gt;&lt;/table&gt;
&lt;br&gt;
&lt;hr noshade&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 color=blue face=&quot;Arial&quot;&gt;Hello Isto,&lt;/font&gt;
&lt;br&gt;&lt;font size=3&gt;&amp;nbsp;&lt;/font&gt;
&lt;br&gt;&lt;font size=2 color=blue face=&quot;Arial&quot;&gt;a short extract from the CANoe-Help:
&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Arial&quot;&gt;In CANoe system variables can be used for
modelling internal parameters.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Arial&quot;&gt;In contrast to environment variables, system
variables describe neither external input/output signals of a node nor
they are used for communication of signals between nodes in a real network
Instead, system variables are used for development and testing since they
provide the opportunity to change and to analyze internal variables and
parameters. They are also used to indicate signals in CANoe which are not
defined in a database and which were not received via a network (e.g. I/O
signals). &lt;/font&gt;
&lt;br&gt;&lt;font size=3&gt;&amp;nbsp;&lt;/font&gt;
&lt;br&gt;&lt;font size=2 color=blue face=&quot;Arial&quot;&gt;The help provides further details
and some examples. &lt;/font&gt;
&lt;br&gt;&lt;font size=3&gt;&amp;nbsp;&lt;/font&gt;
&lt;br&gt;&lt;font size=2 color=blue face=&quot;Arial&quot;&gt;For production testing the main
focus typically is just running the developped panels and test cases, allowing
the user to control the test and get the test results, but not to change
the models etc. Vector offers a version CANoe.PEX for exactly this purpose.
&lt;/font&gt;
&lt;br&gt;&lt;font size=2 color=blue face=&quot;Arial&quot;&gt;It releases the testers from the
many details, that developpers need. And the price is very attractive.&lt;/font&gt;
&lt;br&gt;&lt;font size=3&gt;&amp;nbsp;&lt;/font&gt;
&lt;br&gt;&lt;font size=2 color=blue face=&quot;Arial&quot;&gt;Maybe you like to have a look
to &lt;/font&gt;&lt;a href=http://www.vector.com/vi_canoe_options_en.html target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font size=2 color=blue face=&quot;Arial&quot;&gt;&lt;u&gt;http://www.vector.com/vi_canoe_options_en.html&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;&lt;font size=2 color=blue face=&quot;Arial&quot;&gt;.
There you also will find a link to a feature matrix comparing CANoe.full/run/pex
and CANalyzer.&lt;/font&gt;
&lt;br&gt;&lt;font size=3&gt;&amp;nbsp;&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Best Regards / Mit freundlichen Gruessen&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Juergen Klueser&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;-------------------------------------------------&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Director PON&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Open Networking Tools and Components&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Vector Informatik GmbH&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Ingersheimer Strasse 24&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;D-70499 Stuttgart, Germany&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Phone: +49 711 80670-202&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Fax: &amp;nbsp; +49 711 80670-249&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Email: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26775386&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juergen.klueser@...&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Internet: &lt;/font&gt;&lt;a href=&quot;http://www.vector-informatik.de/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font size=2&gt;http://www.vector-informatik.de&lt;/font&gt;&lt;/a&gt;
&lt;br&gt;&lt;font size=2&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;a href=&quot;http://www.canopen-solutions.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font size=2&gt;http://www.canopen-solutions.com&lt;/font&gt;&lt;/a&gt;
&lt;br&gt;&lt;font size=2&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;a href=http://www.vector.com/car2x target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font size=2&gt;http://www.vector.com/car2x&lt;/font&gt;&lt;/a&gt;
&lt;br&gt;&lt;font size=2&gt;-------------------------------------------------&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Get a fully functional EDS editor - free-of-charge! &lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Visit us at &lt;/font&gt;&lt;a href=&quot;http://www.canopen-forum.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font size=2&gt;http://www.canopen-forum.com&lt;/font&gt;&lt;/a&gt;
&lt;br&gt;&lt;font size=2&gt;&amp;nbsp;&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Besuchen Sie uns auf folgenden Veranstaltungen /&lt;/font&gt;
&lt;br&gt;&lt;font size=2&gt;Visit Vector at important events:&lt;/font&gt;
&lt;br&gt;&lt;a href=&quot;http://www.vector-worldwide.com/vi_events_en.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font size=2&gt;http://www.vector-worldwide.com/vi_events_en.html&lt;/font&gt;&lt;/a&gt;
&lt;br&gt;&lt;font size=3&gt;&amp;nbsp;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;&lt;font size=2 face=&quot;Tahoma&quot;&gt;&lt;b&gt;From:&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26775386&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;
[&lt;/font&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26775386&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&lt;font size=2 face=&quot;Tahoma&quot;&gt;]
&lt;b&gt;On Behalf Of &lt;/b&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26775386&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;isto.virtanen@...&lt;/a&gt;&lt;b&gt;&lt;br&gt;
Sent:&lt;/b&gt; Friday, December 11, 2009 11:34 AM&lt;b&gt;&lt;br&gt;
To:&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26775386&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;&lt;b&gt;&lt;br&gt;
Subject:&lt;/b&gt; [CANLIST] Environment vs system variables in CAPL&lt;/font&gt;&lt;font size=3&gt;&lt;br&gt;
&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;&lt;br&gt;
Greetings,&lt;/font&gt;&lt;font size=3&gt; &lt;br&gt;
&lt;/font&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;&lt;br&gt;
we have CAPL-panels in production testing and we are about to buy more
tools (CANOE / Canalyzer Pro) for the purpose.&lt;/font&gt;&lt;font size=3&gt; &lt;/font&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;&lt;br&gt;
Question is, what is the difference between system and environent variables
in CAPL-programming?&lt;/font&gt;&lt;font size=3&gt; &lt;/font&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;&lt;br&gt;
Canalyzer 7.2 seems to support only system variables, but would otherwise
be suitable for our purposes.&lt;/font&gt;&lt;font size=3&gt; &lt;br&gt;
&lt;/font&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;&lt;br&gt;
isto&lt;/font&gt;&lt;font size=3&gt; &lt;/font&gt;
&lt;p&gt;&lt;font size=1 color=#808080 face=&quot;Verdana&quot;&gt;This e-mail is confidential
and it is intended only for the addressees. Any review, dissemination,
distribution, or copying of this message by persons or entities other than
the intended recipient is prohibited. If you have received this e-mail
in error, kindly notify us immediately by telephone or e-mail and delete
the message from your system. The sender does not accept liability for
any errors or omissions in the contents of this message which may arise
as a result of the e-mail transmission. &lt;/font&gt;
&lt;p&gt;
&lt;p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Environment-vs-system-variables-in-CAPL-tp26742388p26775386.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26742780</id>
	<title>RE: Environment vs system variables in CAPL</title>
	<published>2009-12-11T03:10:38Z</published>
	<updated>2009-12-11T03:10:38Z</updated>
	<author>
		<name>Klüser, Jürgen-2</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;META content=&quot;MSHTML 6.00.2900.5880&quot; name=GENERATOR&gt;&lt;/HEAD&gt;
&lt;BODY&gt;
&lt;DIV&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;&lt;SPAN class=658230311-11122009&gt;Hello 
Isto,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;&lt;SPAN class=658230311-11122009&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;&lt;SPAN class=658230311-11122009&gt;a 
short extract from the CANoe-Help: &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN class=658230311-11122009&gt;&lt;FONT face=Arial size=2&gt;In CANoe system 
variables can be used for modelling internal parameters.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN class=658230311-11122009&gt;&lt;FONT face=Arial&gt;&lt;FONT size=2&gt;&lt;SPAN class=658230311-11122009&gt;I&lt;/SPAN&gt;n contrast to environment variables, system 
variables describe neither external input/output signals of a node nor they are 
used for communication of signals between nodes in a real network Instead, 
system variables are used for development and testing since they provide the 
opportunity to change and to analyze internal variables and parameters. They are 
also used to indicate signals in CANoe which are not defined in a database and 
which were not received via a network (e.g. I/O signals). 
&lt;/FONT&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/SPAN&gt;
&lt;DIV&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;&lt;SPAN class=658230311-11122009&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;&lt;SPAN class=658230311-11122009&gt;The 
help provides further details and some examples. &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;&lt;SPAN class=658230311-11122009&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;&lt;SPAN class=658230311-11122009&gt;For 
production testing the main focus typically is just running the developped 
panels and test cases, allowing the user to control the test and get the test 
results, but not to change the models etc. Vector offers a version CANoe.PEX for 
exactly this purpose. &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;&lt;SPAN class=658230311-11122009&gt;It 
releases the testers from the many details, that developpers need. And the price 
is very attractive.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;&lt;SPAN class=658230311-11122009&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;&lt;SPAN class=658230311-11122009&gt;Maybe 
you like to have a look to &lt;A href=&quot;http://www.vector.com/vi_canoe_options_en.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.vector.com/vi_canoe_options_en.html&lt;/A&gt;. 
There you also will find a link to a feature matrix comparing CANoe.full/run/pex 
and CANalyzer.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=Section1&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Best Regards / Mit 
freundlichen Gruessen&lt;?xml:namespace prefix = o ns = 
&quot;urn:schemas-microsoft-com:office:office&quot; /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Juergen 
Klueser&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;-------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Director 
PON&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Open Networking Tools and 
Components&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Vector Informatik 
GmbH&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Ingersheimer Strasse 
24&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;D-70499 Stuttgart, 
Germany&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Phone: +49 711 
80670-202&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Fax:&lt;SPAN style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;+49 711 
80670-249&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Email: 
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742780&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juergen.klueser@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Internet: 
http://www.vector-informatik.de&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;&lt;SPAN style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&lt;/SPAN&gt;http://www.canopen-solutions.com&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;&lt;SPAN style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&lt;/SPAN&gt;http://www.vector.com/car2x&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;-------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Get a fully functional EDS 
editor - free-of-charge! &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Visit us at 
http://www.canopen-forum.com&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Besuchen Sie uns auf 
folgenden Veranstaltungen /&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;Visit Vector at important 
events:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;http://www.vector-worldwide.com/vi_events_en.html&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR&gt;
&lt;BLOCKQUOTE dir=ltr style=&quot;PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #0000ff 2px solid; MARGIN-RIGHT: 0px&quot;&gt;
  &lt;DIV class=OutlookMessageHeader lang=de dir=ltr align=left&gt;
  &lt;HR tabIndex=-1&gt;
  &lt;FONT face=Tahoma size=2&gt;&lt;B&gt;From:&lt;/B&gt; 
  &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742780&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt; 
  [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742780&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;] &lt;B&gt;On Behalf Of 
  &lt;/B&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742780&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;isto.virtanen@...&lt;/a&gt;&lt;BR&gt;&lt;B&gt;Sent:&lt;/B&gt; Friday, December 11, 2009 11:34 
  AM&lt;BR&gt;&lt;B&gt;To:&lt;/B&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742780&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;&lt;BR&gt;&lt;B&gt;Subject:&lt;/B&gt; [CANLIST] 
  Environment vs system variables in CAPL&lt;BR&gt;&lt;/FONT&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;&lt;/DIV&gt;&lt;BR&gt;&lt;FONT face=sans-serif size=2&gt;Greetings,&lt;/FONT&gt; &lt;BR&gt;&lt;BR&gt;&lt;FONT face=sans-serif size=2&gt;we have CAPL-panels in production testing and we are 
  about to buy more tools (CANOE / Canalyzer Pro) for the purpose.&lt;/FONT&gt; 
  &lt;BR&gt;&lt;FONT face=sans-serif size=2&gt;Question is, what is the difference between 
  system and environent variables in CAPL-programming?&lt;/FONT&gt; &lt;BR&gt;&lt;FONT face=sans-serif size=2&gt;Canalyzer 7.2 seems to support only system variables, 
  but would otherwise be suitable for our purposes.&lt;/FONT&gt; &lt;BR&gt;&lt;BR&gt;&lt;FONT face=sans-serif size=2&gt;isto&lt;/FONT&gt; &lt;FONT face=Verdana color=#808080 size=-2&gt;
  &lt;P&gt;This e-mail is confidential and it is intended only for the addressees. Any 
  review, dissemination, distribution, or copying of this message by persons or 
  entities other than the intended recipient is prohibited. If you have received 
  this e-mail in error, kindly notify us immediately by telephone or e-mail and 
  delete the message from your system. The sender does not accept liability for 
  any errors or omissions in the contents of this message which may arise as a 
  result of the e-mail transmission. 
  &lt;P&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Environment-vs-system-variables-in-CAPL-tp26742388p26742780.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26742388</id>
	<title>Environment vs system variables in CAPL</title>
	<published>2009-12-11T02:33:51Z</published>
	<updated>2009-12-11T02:33:51Z</updated>
	<author>
		<name>isto.virtanen</name>
	</author>
	<content type="html">
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Greetings,&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;we have CAPL-panels in production testing
and we are about to buy more tools (CANOE / Canalyzer Pro) for the purpose.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Question is, what is the difference
between system and environent variables in CAPL-programming?&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Canalyzer 7.2 seems to support only
system variables, but would otherwise be suitable for our purposes.&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;isto&lt;/font&gt;
&lt;FONT FACE=Verdana SIZE=-2 COLOR=808080&gt;
&lt;P&gt;
This e-mail is confidential and it is intended only for the addressees. Any review, dissemination, distribution, or copying of this message by persons or entities other than the intended recipient is prohibited. If you have received this e-mail in error, kindly notify us immediately by telephone or e-mail and delete the message from your system. The sender does not accept liability for any errors or omissions in the contents of this message which may arise as a result of the e-mail transmission.
&lt;P&gt;
&lt;/FONT&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Environment-vs-system-variables-in-CAPL-tp26742388p26742388.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26703519</id>
	<title>CAN CMOS image sensor</title>
	<published>2009-12-08T16:31:40Z</published>
	<updated>2009-12-08T16:31:40Z</updated>
	<author>
		<name>Subramanian, Ramkumar</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;META content=&quot;MSHTML 6.00.2900.5880&quot; name=GENERATOR&gt;&lt;/HEAD&gt;
&lt;BODY&gt;
&lt;DIV&gt;&lt;SPAN class=941372800-09122009&gt;&lt;FONT face=Arial size=2&gt;Hi,&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN class=941372800-09122009&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN class=941372800-09122009&gt;&lt;FONT face=Arial size=2&gt;We are currently 
using micron CMOS digital image sensor for capturing images. Just curious to 
know is there any OEM that has CMOS digital image sensor on 
CAN.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN class=941372800-09122009&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN class=941372800-09122009&gt;&lt;FONT face=Arial size=2&gt;Thanks&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN class=941372800-09122009&gt;&lt;/SPAN&gt;&lt;?xml:namespace prefix = o ns = 
&quot;urn:schemas-microsoft-com:office:office&quot; /&gt;&lt;o:p&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;&lt;STRONG&gt;&lt;EM&gt;Ram&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CAN-CMOS-image-sensor-tp26703519p26703519.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26645678</id>
	<title>AW: PCI-104 cards that can do CAN at 2Mbps</title>
	<published>2009-12-04T08:25:51Z</published>
	<updated>2009-12-04T08:25:51Z</updated>
	<author>
		<name>&quot;Christian Bräutigam&quot;-2</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 11 (filtered medium)&quot;&gt;
&lt;!--[if !mso]&gt;
&lt;style&gt;
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
&lt;/style&gt;
&lt;![endif]--&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=DE link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span style='font-size:
10.0pt;font-family:Arial;color:navy'&gt;Michael:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span style='font-size:
10.0pt;font-family:Arial;color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Arial;color:navy'&gt;We did a short test with
our PC/104plus card. In a quick test on a short cable it works @ 2 Mbit/s. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Arial;color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Arial;color:navy'&gt;&lt;a href=&quot;http://www.softing.com/home/en/industrial-automation/products/can-bus/interface-cards/can/pc-104plus-pro-2.php?navanchor=3010080&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.softing.com/home/en/industrial-automation/products/can-bus/interface-cards/can/pc-104plus-pro-2.php?navanchor=3010080&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Arial;color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Arial;color:navy'&gt;Just let me know if this
is of interest for you. Maybe we can discuss this further off the list.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Arial;color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Arial;color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Arial;color:navy'&gt;Best regards,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Arial;color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p style='margin:0cm;margin-bottom:.0001pt'&gt;&lt;font size=3 color=navy face=&quot;Times New Roman&quot;&gt;&lt;span lang=EN-GB style='font-size:12.0pt;color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p style='margin:0cm;margin-bottom:.0001pt'&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Arial;color:navy'&gt;Christian
Bräutig&lt;u1:PersonName&gt;am&lt;/span&gt;&lt;/font&gt;&lt;/u1:PersonName&gt;&lt;font color=navy&gt;&lt;span lang=EN-GB style='color:navy'&gt; &lt;br&gt;
&lt;/span&gt;&lt;/font&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Arial;color:navy'&gt;Product Manager
Industrial Communication&lt;/span&gt;&lt;/font&gt;&lt;font color=navy&gt;&lt;span lang=EN-GB style='color:navy'&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p style='margin:0cm;margin-bottom:.0001pt'&gt;&lt;font size=2 color=black face=Arial&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Arial;
color:black'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p style='margin:0cm;margin-bottom:.0001pt'&gt;&lt;font size=2 color=black face=Arial&gt;&lt;span style='font-size:10.0pt;font-family:Arial;color:black'&gt;Softing
AG&lt;br&gt;
Richard-Reitzner-Allee 6&lt;br&gt;
D-85540 Haar&lt;br&gt;
Tel. +49 (0) 89 456 56-328&lt;br&gt;
Fax&amp;nbsp;+49 (0) 89 456 56-399&lt;/span&gt;&lt;/font&gt;&lt;font color=navy&gt;&lt;span style='color:navy'&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p style='margin:0cm;margin-bottom:.0001pt'&gt;&lt;font size=2 color=black face=Arial&gt;&lt;span style='font-size:10.0pt;font-family:Arial;color:black'&gt;E-Mail:&lt;/span&gt;&lt;/font&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26645678&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;christian.braeutigam@...&lt;/a&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span style='font-size:10.0pt;font-family:Arial;
color:navy'&gt;&lt;br&gt;
&lt;/span&gt;&lt;/font&gt;&lt;font size=1 color=black&gt;&lt;span style='font-size:7.5pt;color:black'&gt;Softing
AG, Richard-Reitzner-Allee 6, D-85540 Haar,&lt;/span&gt;&lt;/font&gt;&lt;font color=navy&gt;&lt;span style='color:navy'&gt; &lt;/span&gt;&lt;/font&gt;&lt;font size=1 color=navy&gt;&lt;span style='font-size:7.5pt;color:navy'&gt;Internet: &lt;a href=&quot;http://&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://&lt;/a&gt;&lt;/span&gt;&lt;/font&gt;&lt;font color=navy&gt;&lt;span style='color:navy'&gt; &lt;a href=&quot;http://www.softing.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font size=1 color=purple&gt;&lt;span style='font-size:7.5pt;color:purple'&gt;www.softing.com&lt;/span&gt;&lt;/font&gt;&lt;/a&gt;&lt;/span&gt;&lt;/font&gt;&lt;font size=1 color=navy&gt;&lt;span style='font-size:7.5pt;color:navy'&gt;&lt;br&gt;
Softing Aktiengesellschaft: Vorsitzender des Aufsichtsrates: Dr. Horst
Schiessl; Vorstand: Dr. Wolfgang Trier (Vorsitzender), Dr. Michael Siedentop&lt;br&gt;
Sitz: Haar bei München,&lt;/span&gt;&lt;/font&gt;&lt;font color=navy&gt;&lt;span style='color:navy'&gt;
&lt;/span&gt;&lt;/font&gt;&lt;font size=1 color=black&gt;&lt;span style='font-size:7.5pt;color:black'&gt;Amtsgericht
München, HRB 127 604, USt-ID: DE186893974 WEEE Reg. Nr. DE 39257114&lt;/span&gt;&lt;/font&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;div class=MsoNormal align=center style='text-align:center'&gt;&lt;font size=3 face=&quot;Times New Roman&quot;&gt;&lt;span style='font-size:12.0pt'&gt;

&lt;hr size=2 width=&quot;100%&quot; align=center tabindex=-1&gt;

&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;font size=2 face=Tahoma&gt;&lt;span style='font-size:10.0pt;
font-family:Tahoma;font-weight:bold'&gt;Von:&lt;/span&gt;&lt;/font&gt;&lt;/b&gt;&lt;font size=2 face=Tahoma&gt;&lt;span style='font-size:10.0pt;font-family:Tahoma'&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26645678&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26645678&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;] &lt;b&gt;&lt;span style='font-weight:
bold'&gt;Im Auftrag von &lt;/span&gt;&lt;/b&gt;Michael J. Noone&lt;br&gt;
&lt;b&gt;&lt;span style='font-weight:bold'&gt;Gesendet:&lt;/span&gt;&lt;/b&gt; Mittwoch, 2. &lt;/span&gt;&lt;/font&gt;&lt;font size=2 face=Tahoma&gt;&lt;span lang=EN-GB style='font-size:10.0pt;font-family:Tahoma'&gt;Dezember
2009 15:21&lt;br&gt;
&lt;b&gt;&lt;span style='font-weight:bold'&gt;An:&lt;/span&gt;&lt;/b&gt; &lt;br&gt;
&lt;b&gt;&lt;span style='font-weight:bold'&gt;Betreff:&lt;/span&gt;&lt;/b&gt; [CANLIST] PCI-104 cards
that can do CAN at 2Mbps&lt;/span&gt;&lt;/font&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;font size=3 face=&quot;Times New Roman&quot;&gt;&lt;span lang=EN-GB style='font-size:12.0pt'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-US style='font-size:
10.0pt;font-family:Arial'&gt;Hi there &amp;#8211; does anybody know if any PCI-104 CAN
controllers out there that can operate at 2Mbps? Ideally the card would have at
least two, but better yet 4, CAN controllers. I am well aware that this is out
of spec&amp;#8230; but sometimes you gotta do what you gotta do &lt;/span&gt;&lt;/font&gt;&lt;font size=2 face=Wingdings&gt;&lt;span lang=EN-US style='font-size:10.0pt;font-family:
Wingdings'&gt;J&lt;/span&gt;&lt;/font&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-US style='font-size:10.0pt;font-family:Arial'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-US style='font-size:
10.0pt;font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=EN-US style='font-size:
10.0pt;font-family:Arial'&gt;Thanks!&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=IT style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=IT style='font-size:10.0pt;
font-family:Arial'&gt;Michael J. Noone&lt;br&gt;
Boston Dynamics&lt;/span&gt;&lt;/font&gt;&lt;span lang=IT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PCI-104-cards-that-can-do-CAN-at-2Mbps-tp26610132p26645678.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26643343</id>
	<title>Re: EMC of unshielded CAN bus?</title>
	<published>2009-12-04T06:01:48Z</published>
	<updated>2009-12-04T06:01:48Z</updated>
	<author>
		<name>Oliver Betz</name>
	</author>
	<content type="html">JFTR:
&lt;br&gt;&lt;br&gt;Using two TJA1050 operating at 1MBit/s over 20m unshielded star quad 
&lt;br&gt;cable, transmission errors started to happen at more than 2kV EFT in 
&lt;br&gt;the capacitive clamp (grounded DUT).
&lt;br&gt;&lt;br&gt;I could test BCI to only 3V and 15MHz but I expect no problems since 
&lt;br&gt;the calculated common mode voltage should be well below the allowed 
&lt;br&gt;limits.
&lt;br&gt;&lt;br&gt;So immunity doesn't seem to be an issue.
&lt;br&gt;&lt;br&gt;Oliver
&lt;br&gt;-- 
&lt;br&gt;Oliver Betz, Muenchen
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26643343&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/EMC-of-unshielded-CAN-bus--tp26162085p26643343.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26635884</id>
	<title>Re: PCI-104 cards that can do CAN at 2Mbps</title>
	<published>2009-12-04T05:14:53Z</published>
	<updated>2009-12-04T05:14:53Z</updated>
	<author>
		<name>Axel Schmidt</name>
	</author>
	<content type="html">&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Michael J. Noone wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Hi there - does anybody know if any PCI-104 CAN controllers out there that
&lt;br&gt;can operate at 2Mbps? Ideally the card would have at least two, but better
&lt;br&gt;yet 4, CAN controllers. I am well aware that this is out of spec. but
&lt;br&gt;sometimes you gotta do what you gotta do :-)
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
Hi Michael,
&lt;br&gt;we have a product series of CAN-Ethernet-Gateways with different numbers of CAN ports (1,2 and 4 ports: &lt;a href=&quot;http://www.anagate.de/products/can-ethernet-gateways.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.anagate.de/products/can-ethernet-gateways.htm&lt;/a&gt;). These devices are not PCI-104 modules, but can be accessed via standard LAN interface from a PC or PLC. Maybe this will be also interesting for you.
&lt;br&gt;&lt;br&gt;Concerning to run a CAN bus outside the specifaction, I can give you a hint. We using MCP2515 controllers on our devices, which can be set to higher baudrates as 1Mbit although it not inside the controller spec. We have made some internal tests with higher baudrates some days ago: 
&lt;br&gt;- 1,5Mbit seem to work stable - we can send and recieve messages, but 
&lt;br&gt;- 2 Mbit is not working well, we can send, but the receiving device has problems 
&lt;br&gt;&lt;br&gt;Maybe this problem can be fixed, if it is a problem on our device firmware, and not a problem of the controller !! &amp;nbsp;&lt;img class='smiley' src='http://old.nabble.com/images/smiley/anim_confused.gif' /&gt;&amp;nbsp; 
&lt;br&gt;&lt;br&gt;By the way, if I understand right, you want to connect at 2Mbit on 4 channels on a single PC you will need a fast device which can process about 64000 telegrams per second in full bus utilization !!!!
&lt;br&gt;&lt;br&gt;best regards
&lt;br&gt;Axel Schmidt
&lt;br&gt;Analytica GmbH
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PCI-104-cards-that-can-do-CAN-at-2Mbps-tp26610132p26635884.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26610132</id>
	<title>PCI-104 cards that can do CAN at 2Mbps</title>
	<published>2009-12-02T06:20:47Z</published>
	<updated>2009-12-02T06:20:47Z</updated>
	<author>
		<name>Michael J. Noone</name>
	</author>
	<content type="html">&lt;html xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 11 (filtered medium)&quot;&gt;


&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Hi there &amp;#8211; does anybody know if any PCI-104 CAN
controllers out there that can operate at 2Mbps? Ideally the card would have at
least two, but better yet 4, CAN controllers. I am well aware that this is out
of spec&amp;#8230; but sometimes you gotta do what you gotta do &lt;/span&gt;&lt;/font&gt;&lt;font size=2 face=Wingdings&gt;&lt;span style='font-size:10.0pt;font-family:Wingdings'&gt;J&lt;/span&gt;&lt;/font&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;font-family:Arial'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Thanks!&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=IT style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span lang=IT style='font-size:10.0pt;
font-family:Arial'&gt;Michael J. Noone&lt;br&gt;
Boston Dynamics&lt;/span&gt;&lt;/font&gt;&lt;span lang=IT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PCI-104-cards-that-can-do-CAN-at-2Mbps-tp26610132p26610132.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26606924</id>
	<title>Re: CAN Id is trucated</title>
	<published>2009-12-02T02:21:49Z</published>
	<updated>2009-12-02T02:21:49Z</updated>
	<author>
		<name>Sebastian Haas-2</name>
	</author>
	<content type="html">Ravi,
&lt;br&gt;&lt;br&gt;this is pretty Socket CAN specific, post your question to
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26606924&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;socketcan-users@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;Sebastian
&lt;br&gt;&lt;br&gt;Ravi Kumar Madhuranthakam schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; HI ,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am using socket CAN with Atmel 9263 board , And CAN Messages Extended
&lt;br&gt;&amp;gt; ID is truncated when I send message using PCAN USB- analyzer .
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am using read and write calls for message sending and receiving in the
&lt;br&gt;&amp;gt; board.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am not using any filters and using CAN_RAW .
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Anybody has idea on this issue ?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; My Code looks like this
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #include &amp;lt;sys/types.h&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #include &amp;lt;sys/socket.h&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #include &amp;lt;sys/ioctl.h&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #include &amp;lt;net/if.h&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #include &amp;lt;linux/can.h&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #include &amp;lt;linux/can/raw.h&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #include &amp;lt;string.h&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; /* At time of writing, these constants are not defined in the headers */
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #ifndef PF_CAN
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #define PF_CAN 29
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #endif
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #ifndef AF_CAN
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #define AF_CAN PF_CAN
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #endif
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; /* ... */
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; /* Somewhere in your app */
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;/* Create the socket */
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;int skt = socket( PF_CAN, SOCK_RAW, CAN_RAW );
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;/* Locate the interface you wish to use */
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;struct ifreq ifr;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;strcpy(ifr.ifr_name, &amp;quot;can0&amp;quot;);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;ioctl(skt, SIOCGIFINDEX, &amp;ifr); /* ifr.ifr_ifindex gets filled
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; * with that device's index */
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;/* Select that CAN interface, and bind the socket to it. */
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;struct sockaddr_can addr;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;addr.can_family = AF_CAN;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;addr.can_ifindex = ifr.ifr_ifindex;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;bind( skt, (struct sockaddr*)&amp;addr, sizeof(addr) );
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;/* Send a message to the CAN bus */
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;struct can_frame frame;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;frame.can_id = 0x123;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;strcpy( &amp;frame.data, &amp;quot;foo&amp;quot; );
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;frame.can_dlc = strlen( &amp;frame.data );
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;int bytes_sent = write( skt, &amp;frame, sizeof(frame) );
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;/* Read a message back from the CAN bus */
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;int bytes_read = read( skt, &amp;frame, sizeof(frame) );
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.mindtree.com/email/disclaimer.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.mindtree.com/email/disclaimer.html&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Mit freundlichen Gruessen/Best Regards,
&lt;br&gt;&lt;br&gt;Sebastian Haas
&lt;br&gt;Software Entwicklung/Software Development
&lt;br&gt;&lt;br&gt;Phone: +49-9451-9432-22
&lt;br&gt;Fax &amp;nbsp;: +49-9451-9432-12
&lt;br&gt;Email: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26606924&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;haas@...&lt;/a&gt;
&lt;br&gt;Web &amp;nbsp;: www.ems-wuensche.com
&lt;br&gt;-- 
&lt;br&gt;EMS Dr. Thomas Wuensche e.K.
&lt;br&gt;Sonnenhang 3
&lt;br&gt;85304 Ilmmuenster
&lt;br&gt;HRA Neuburg a.d. Donau, HR-Nr. 70.106
&lt;br&gt;Phone: +49-8441-490260
&lt;br&gt;Fax &amp;nbsp;: +49-8441-81860
&lt;br&gt;&lt;a href=&quot;http://www.ems-wuensche.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ems-wuensche.com&lt;/a&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26606924&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CAN-Id-is-trucated-tp26603338p26606924.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26603338</id>
	<title>CAN Id is trucated</title>
	<published>2009-12-01T19:52:08Z</published>
	<updated>2009-12-01T19:52:08Z</updated>
	<author>
		<name>RaviKumarM</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:p=&quot;urn:schemas-microsoft-com:office:powerpoint&quot; xmlns:a=&quot;urn:schemas-microsoft-com:office:access&quot; xmlns:dt=&quot;uuid:C2F41010-65B3-11d1-A29F-00AA00C14882&quot; xmlns:s=&quot;uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882&quot; xmlns:rs=&quot;urn:schemas-microsoft-com:rowset&quot; xmlns:Z=&quot;urn:schemas-microsoft-com:&quot; xmlns:b=&quot;urn:schemas-microsoft-com:office:publisher&quot; xmlns:ss=&quot;urn:schemas-microsoft-com:office:spreadsheet&quot; xmlns:c=&quot;urn:schemas-microsoft-com:office:component:spreadsheet&quot; xmlns:odc=&quot;urn:schemas-microsoft-com:office:odc&quot; xmlns:oa=&quot;urn:schemas-microsoft-com:office:activation&quot; xmlns:html=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:q=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:rtc=&quot;http://microsoft.com/officenet/conferencing&quot; xmlns:D=&quot;DAV:&quot; xmlns:Repl=&quot;http://schemas.microsoft.com/repl/&quot; xmlns:mt=&quot;http://schemas.microsoft.com/sharepoint/soap/meetings/&quot; xmlns:x2=&quot;http://schemas.microsoft.com/office/excel/2003/xml&quot; xmlns:ppda=&quot;http://www.passport.com/NameSpace.xsd&quot; xmlns:ois=&quot;http://schemas.microsoft.com/sharepoint/soap/ois/&quot; xmlns:dir=&quot;http://schemas.microsoft.com/sharepoint/soap/directory/&quot; xmlns:ds=&quot;http://www.w3.org/2000/09/xmldsig#&quot; xmlns:dsp=&quot;http://schemas.microsoft.com/sharepoint/dsp&quot; xmlns:udc=&quot;http://schemas.microsoft.com/data/udc&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:sub=&quot;http://schemas.microsoft.com/sharepoint/soap/2002/1/alerts/&quot; xmlns:ec=&quot;http://www.w3.org/2001/04/xmlenc#&quot; xmlns:sp=&quot;http://schemas.microsoft.com/sharepoint/&quot; xmlns:sps=&quot;http://schemas.microsoft.com/sharepoint/soap/&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:udcs=&quot;http://schemas.microsoft.com/data/udc/soap&quot; xmlns:udcxf=&quot;http://schemas.microsoft.com/data/udc/xmlfile&quot; xmlns:udcp2p=&quot;http://schemas.microsoft.com/data/udc/parttopart&quot; xmlns:wf=&quot;http://schemas.microsoft.com/sharepoint/soap/workflow/&quot; xmlns:dsss=&quot;http://schemas.microsoft.com/office/2006/digsig-setup&quot; xmlns:dssi=&quot;http://schemas.microsoft.com/office/2006/digsig&quot; xmlns:mdssi=&quot;http://schemas.openxmlformats.org/package/2006/digital-signature&quot; xmlns:mver=&quot;http://schemas.openxmlformats.org/markup-compatibility/2006&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns:mrels=&quot;http://schemas.openxmlformats.org/package/2006/relationships&quot; xmlns:spwp=&quot;http://microsoft.com/sharepoint/webpartpages&quot; xmlns:ex12t=&quot;http://schemas.microsoft.com/exchange/services/2006/types&quot; xmlns:ex12m=&quot;http://schemas.microsoft.com/exchange/services/2006/messages&quot; xmlns:pptsl=&quot;http://schemas.microsoft.com/sharepoint/soap/SlideLibrary/&quot; xmlns:spsl=&quot;http://microsoft.com/webservices/SharePointPortalServer/PublishedLinksService&quot; xmlns:st=&quot;&amp;#1;&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=&quot;Generator&quot; content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;
&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;
&lt;body lang=&quot;EN-US&quot; link=&quot;blue&quot; vlink=&quot;purple&quot;&gt;
&lt;div class=&quot;Section1&quot;&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;HI ,&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;I am using socket CAN with Atmel 9263 board , And CAN Messages Extended ID is truncated when I send message using PCAN USB- analyzer .&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;I am using read and write calls for message sending and receiving in the board.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;I am not using any filters and using CAN_RAW .&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Anybody has idea on this issue ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;My Code looks like this&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#include &amp;lt;sys/types.h&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#include &amp;lt;sys/socket.h&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#include &amp;lt;sys/ioctl.h&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#include &amp;lt;net/if.h&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#include &amp;lt;linux/can.h&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#include &amp;lt;linux/can/raw.h&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#include &amp;lt;string.h&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;/* At time of writing, these constants are not defined in the headers */&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#ifndef PF_CAN&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#define PF_CAN 29&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#endif&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#ifndef AF_CAN&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#define AF_CAN PF_CAN&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;#endif&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;/* ... */&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;/* Somewhere in your app */&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; /* Create the socket */&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; int skt = socket( PF_CAN, SOCK_RAW, CAN_RAW );&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; /* Locate the interface you wish to use */&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; struct ifreq ifr;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; strcpy(ifr.ifr_name, &amp;quot;can0&amp;quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; ioctl(skt, SIOCGIFINDEX, &amp;amp;ifr); /* ifr.ifr_ifindex gets filled
&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; * with that device's index */&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; /* Select that CAN interface, and bind the socket to it. */&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; struct sockaddr_can addr;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; addr.can_family = AF_CAN;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; addr.can_ifindex = ifr.ifr_ifindex;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; bind( skt, (struct sockaddr*)&amp;amp;addr, sizeof(addr) );&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; /* Send a message to the CAN bus */&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; struct can_frame frame;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; frame.can_id = 0x123;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; strcpy( &amp;amp;frame.data, &amp;quot;foo&amp;quot; );&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; frame.can_dlc = strlen( &amp;amp;frame.data );&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; int bytes_sent = write( skt, &amp;amp;frame, sizeof(frame) );&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; /* Read a message back from the CAN bus */&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;background:#F8FCFF&quot;&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-size:
10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;&amp;nbsp;&amp;nbsp; int bytes_read = read( skt, &amp;amp;frame, sizeof(frame) );&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;font face=&quot;Arial&quot; color=&quot;Gray&quot; size=&quot;1&quot;&gt;http://www.mindtree.com/email/disclaimer.html&lt;br&gt;
&lt;/font&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CAN-Id-is-trucated-tp26603338p26603338.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26540020</id>
	<title>testing sampling point settings</title>
	<published>2009-11-27T01:20:55Z</published>
	<updated>2009-11-27T01:20:55Z</updated>
	<author>
		<name>Bertil Bäck-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;I have a CANopen node on which I need to test the sampling point settings.
&lt;br&gt;CANopen DSP 301 v4.2 defines sampling point on 1Mbps as valid 75% to 90% 
&lt;br&gt;and recommended 87,5%
&lt;br&gt;&lt;br&gt;How can I test the sampling point?
&lt;br&gt;&lt;br&gt;I guess if one would use 25m cable on 1Mbps and has to early sampling 
&lt;br&gt;point, one will start to get error frames. But this is not a practical 
&lt;br&gt;way to test the sampling point on 10kbps when the cable length should be 
&lt;br&gt;~5000m.
&lt;br&gt;&lt;br&gt;Does anybody have any idea on how to test the sampling point setting in 
&lt;br&gt;a practical way.
&lt;br&gt;&lt;br&gt;Br,
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Bertil BÄCK R&amp;D Manager Hardware
&lt;br&gt;T +358 6 357 6305, M +358 50 588 6895, F +358 6 357 6320
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26540020&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bertil.back@...&lt;/a&gt;, www.tke.fi
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26540020&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/testing-sampling-point-settings-tp26540020p26540020.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26408476</id>
	<title>Re: Re: Which connectors are recommended?</title>
	<published>2009-11-18T05:33:23Z</published>
	<updated>2009-11-18T05:33:23Z</updated>
	<author>
		<name>isto.virtanen</name>
	</author>
	<content type="html">
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Hello Michelle,&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Molex (Brad Harrison) has some manufacturing
and development in Germany (Bretten) and manufacturing in Poland.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;To be honest, I havent got a faintest
idea on their network in Germany.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;In case You need a connection to Molex/distributor,
I think I can arrange one.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Send me a direct email.&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;isto&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;table width=100%&gt;
&lt;tr valign=top&gt;
&lt;td&gt;&lt;font size=1 face=&quot;Default MultiLingual&quot;&gt;&lt;b&gt;Michelle Konzack&lt;/b&gt;&lt;/font&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;From:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;Michelle Konzack &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408476&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;michelle.konzack@...&lt;/a&gt;&amp;gt;&lt;/font&gt;
&lt;tr valign=top&gt;
&lt;td&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;To:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408476&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;&lt;/font&gt;
&lt;tr&gt;
&lt;td valign=top&gt;
&lt;td valign=top&gt;
&lt;td valign=top&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;Cc:&lt;/font&gt;
&lt;td&gt;
&lt;tr valign=top&gt;
&lt;td&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;Date:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;18.11.2009 15:14&lt;/font&gt;
&lt;tr valign=top&gt;
&lt;td&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;Subject:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;[CANLIST] Re: Which connectors are recommended?&lt;/font&gt;&lt;/table&gt;
&lt;br&gt;
&lt;hr noshade&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;&lt;tt&gt;&lt;font size=2&gt;Hello Isto,&lt;br&gt;
&lt;br&gt;
Am 2009-11-18 09:52:05, schrieb &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408476&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;isto.virtanen@...&lt;/a&gt;:&lt;br&gt;
&amp;gt; Hello Michelle,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; In case Your environment is not extremely bad, I'd go for M12.&lt;br&gt;
&amp;gt; It is widely used e.g. in construction machinery.&lt;br&gt;
&amp;gt; Connector is fairly good, although it is meant only for assembly purposes,
&lt;br&gt;
&amp;gt; not to get opened and &amp;nbsp;closed dozens of times.&lt;br&gt;
&lt;br&gt;
This is perfect.&lt;br&gt;
&lt;br&gt;
&amp;gt; Batch cables are available from many suppliers and thus pricing is
also &lt;br&gt;
&amp;gt; pretty good.&lt;br&gt;
&lt;br&gt;
Then I have to find a supplier/manufactuer/distributor in France/Germany&lt;br&gt;
since I do not know the connectors.&lt;br&gt;
&lt;br&gt;
&amp;gt; You can also power small current units through the connector.&lt;br&gt;
&amp;gt; However, You must pay attention on the short circuit protection since
wire &lt;br&gt;
&amp;gt; sizes are usually 0,34/0,5mm2 and with longer cables (above 10m) standard
&lt;br&gt;
&amp;gt; slow circuit breakers possibly dont operate at all. &lt;br&gt;
&amp;gt; We have made some tests with 0.5mm2 cable with length of 25m having
&lt;br&gt;
&amp;gt; complete short circuit at the other end. After half an hour circuit
was &lt;br&gt;
&amp;gt; still closed&amp;lt;g&amp;gt;&lt;br&gt;
&amp;gt; Based on these experiences we have selected a special 2A breaker for
this &lt;br&gt;
&amp;gt; use.&lt;br&gt;
&lt;br&gt;
Interesting information.&lt;br&gt;
&lt;br&gt;
&amp;gt; In case You need more power, You could go to thick devicenet cabling
&lt;br&gt;
&amp;gt; with7/8? connector.&lt;br&gt;
&lt;br&gt;
Most stuff has under 0.5A.&lt;br&gt;
&lt;br&gt;
&amp;gt; You could try&lt;br&gt;
&amp;gt; &lt;/font&gt;&lt;/tt&gt;&lt;a href=&quot;http://www.lumberg-automation.com/main/common/serie.asp?ser=A05&amp;amp;cat=3&amp;amp;cat3=_2&amp;amp;lang=eng&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;tt&gt;&lt;font size=2&gt;http://www.lumberg-automation.com/main/common/serie.asp?ser=A05&amp;amp;cat=3&amp;amp;cat3=_2&amp;amp;lang=eng&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=2&gt;&lt;br&gt;
&lt;br&gt;
This does not work (MS IIS Error; forbidden directory access) and &amp;nbsp;if
&amp;nbsp;I&lt;br&gt;
choose only the domain I am redirected &amp;nbsp;to &amp;nbsp;a &amp;nbsp;badly &amp;nbsp;translated
&amp;nbsp;german&lt;br&gt;
website &lt;/font&gt;&lt;/tt&gt;&lt;a href=http://venlo.netzgiganten.de target=&quot;_top&quot; rel=&quot;nofollow&quot; /&gt;&lt;tt&gt;&lt;font size=2&gt;http://venlo.netzgiganten.de/&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=2&gt;
(the website is a mixup of &amp;nbsp;german&lt;br&gt;
and english) &amp;nbsp;:-/&lt;br&gt;
&lt;br&gt;
I think, I wil bother/blame the webmaster a little bit... :-D&lt;br&gt;
&lt;br&gt;
However, I have &amp;nbsp;checked &amp;nbsp;Belden/Lumberg &amp;nbsp;and &amp;nbsp;contacted
&amp;nbsp;them &amp;nbsp;with &amp;nbsp;an&lt;br&gt;
inquiry for suitable CANopen/M1 products.&lt;br&gt;
&lt;br&gt;
&amp;gt; &lt;/font&gt;&lt;/tt&gt;&lt;a href=http://www.woodhead.com/products/brad/bradconnectivity/connectorscordsets/bhnetworkmedia target=&quot;_top&quot; rel=&quot;nofollow&quot; /&gt;&lt;tt&gt;&lt;font size=2&gt;http://www.woodhead.com/products/brad/bradconnectivity/connectorscordsets/bhnetworkmedia/&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=2&gt;&lt;br&gt;
&lt;br&gt;
Thanks, Greetings and nice Day/Evening&lt;br&gt;
 &amp;nbsp; &amp;nbsp;Michelle Konzack&lt;br&gt;
 &amp;nbsp; &amp;nbsp;Electronic Engineer&lt;br&gt;
 &amp;nbsp; &amp;nbsp;Tamay Dogan Network&lt;br&gt;
 &amp;nbsp; &amp;nbsp;Debian GNU/Linux Consultant&lt;br&gt;
&lt;br&gt;
-- &lt;br&gt;
Linux-User #280138 with the Linux Counter, &lt;/font&gt;&lt;/tt&gt;&lt;a href=http://counter.li.org target=&quot;_top&quot; rel=&quot;nofollow&quot; /&gt;&lt;tt&gt;&lt;font size=2&gt;http://counter.li.org/&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=2&gt;&lt;br&gt;
##################### Debian GNU/Linux Consultant #####################&lt;br&gt;
&amp;lt;&lt;/font&gt;&lt;/tt&gt;&lt;a href=&quot;http://www.tamay-dogan.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;tt&gt;&lt;font size=2&gt;http://www.tamay-dogan.net/&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=2&gt;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Michelle Konzack&lt;br&gt;
&amp;lt;&lt;/font&gt;&lt;/tt&gt;&lt;a href=http://www.can4linux.org target=&quot;_top&quot; rel=&quot;nofollow&quot; /&gt;&lt;tt&gt;&lt;font size=2&gt;http://www.can4linux.org/&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=2&gt;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Apt. 917&lt;br&gt;
&amp;lt;&lt;/font&gt;&lt;/tt&gt;&lt;a href=http://www.flexray4linux.org target=&quot;_top&quot; rel=&quot;nofollow&quot; /&gt;&lt;tt&gt;&lt;font size=2&gt;http://www.flexray4linux.org/&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=2&gt;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 50, rue de Soultz&lt;br&gt;
Jabber &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408476&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;linux4michelle@...&lt;/a&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
67100 Strabourg/France&lt;br&gt;
IRC &amp;nbsp; &amp;nbsp;#Debian (irc.icq.com) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tel. DE: +49 177 9351947&lt;br&gt;
ICQ &amp;nbsp; &amp;nbsp;#328449886 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Tel. FR: +33 &amp;nbsp;6 &amp;nbsp;61925193&lt;br&gt;
[attachment &amp;quot;signature.pgp&amp;quot; deleted by Isto Virtanen/1181/SANDVIK]
&lt;/font&gt;&lt;/tt&gt;
&lt;br&gt;
&lt;br&gt;
&lt;FONT FACE=Verdana SIZE=-2 COLOR=808080&gt;
&lt;P&gt;
This e-mail is confidential and it is intended only for the addressees. Any review, dissemination, distribution, or copying of this message by persons or entities other than the intended recipient is prohibited. If you have received this e-mail in error, kindly notify us immediately by telephone or e-mail and delete the message from your system. The sender does not accept liability for any errors or omissions in the contents of this message which may arise as a result of the e-mail transmission.
&lt;P&gt;
&lt;/FONT&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Which-connectors-are-recommended--tp26400166p26408476.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26407456</id>
	<title>Re: Which connectors are recommended?</title>
	<published>2009-11-18T04:36:38Z</published>
	<updated>2009-11-18T04:36:38Z</updated>
	<author>
		<name>Michelle Konzack-3</name>
	</author>
	<content type="html">Hello Isto,
&lt;br&gt;&lt;br&gt;Am 2009-11-18 09:52:05, schrieb &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26407456&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;isto.virtanen@...&lt;/a&gt;:
&lt;br&gt;&amp;gt; Hello Michelle,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In case Your environment is not extremely bad, I'd go for M12.
&lt;br&gt;&amp;gt; It is widely used e.g. in construction machinery.
&lt;br&gt;&amp;gt; Connector is fairly good, although it is meant only for assembly purposes, 
&lt;br&gt;&amp;gt; not to get opened and &amp;nbsp;closed dozens of times.
&lt;br&gt;&lt;br&gt;This is perfect.
&lt;br&gt;&lt;br&gt;&amp;gt; Batch cables are available from many suppliers and thus pricing is also 
&lt;br&gt;&amp;gt; pretty good.
&lt;br&gt;&lt;br&gt;Then I have to find a supplier/manufactuer/distributor in France/Germany
&lt;br&gt;since I do not know the connectors.
&lt;br&gt;&lt;br&gt;&amp;gt; You can also power small current units through the connector.
&lt;br&gt;&amp;gt; However, You must pay attention on the short circuit protection since wire 
&lt;br&gt;&amp;gt; sizes are usually 0,34/0,5mm2 and with longer cables (above 10m) standard 
&lt;br&gt;&amp;gt; slow circuit breakers possibly dont operate at all. 
&lt;br&gt;&amp;gt; We have made some tests with 0.5mm2 cable with length of 25m having 
&lt;br&gt;&amp;gt; complete short circuit at the other end. After half an hour circuit was 
&lt;br&gt;&amp;gt; still closed&amp;lt;g&amp;gt;
&lt;br&gt;&amp;gt; Based on these experiences we have selected a special 2A breaker for this 
&lt;br&gt;&amp;gt; use.
&lt;br&gt;&lt;br&gt;Interesting information.
&lt;br&gt;&lt;br&gt;&amp;gt; In case You need more power, You could go to thick devicenet cabling 
&lt;br&gt;&amp;gt; with7/8? connector.
&lt;br&gt;&lt;br&gt;Most stuff has under 0.5A.
&lt;br&gt;&lt;br&gt;&amp;gt; You could try
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.lumberg-automation.com/main/common/serie.asp?ser=A05&amp;cat=3&amp;cat3=_2&amp;lang=eng&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.lumberg-automation.com/main/common/serie.asp?ser=A05&amp;cat=3&amp;cat3=_2&amp;lang=eng&lt;/a&gt;&lt;br&gt;&lt;br&gt;This does not work (MS IIS Error; forbidden directory access) and &amp;nbsp;if &amp;nbsp;I
&lt;br&gt;choose only the domain I am redirected &amp;nbsp;to &amp;nbsp;a &amp;nbsp;badly &amp;nbsp;translated &amp;nbsp;german
&lt;br&gt;website &lt;a href=&quot;http://venlo.netzgiganten.de/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://venlo.netzgiganten.de/&lt;/a&gt;&amp;nbsp;(the website is a mixup of &amp;nbsp;german
&lt;br&gt;and english) &amp;nbsp;:-/
&lt;br&gt;&lt;br&gt;I think, I wil bother/blame the webmaster a little bit... :-D
&lt;br&gt;&lt;br&gt;However, I have &amp;nbsp;checked &amp;nbsp;Belden/Lumberg &amp;nbsp;and &amp;nbsp;contacted &amp;nbsp;them &amp;nbsp;with &amp;nbsp;an
&lt;br&gt;inquiry for suitable CANopen/M1 products.
&lt;br&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.woodhead.com/products/brad/bradconnectivity/connectorscordsets/bhnetworkmedia/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.woodhead.com/products/brad/bradconnectivity/connectorscordsets/bhnetworkmedia/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks, Greetings and nice Day/Evening
&lt;br&gt;&amp;nbsp; &amp;nbsp; Michelle Konzack
&lt;br&gt;&amp;nbsp; &amp;nbsp; Electronic Engineer
&lt;br&gt;&amp;nbsp; &amp;nbsp; Tamay Dogan Network
&lt;br&gt;&amp;nbsp; &amp;nbsp; Debian GNU/Linux Consultant
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Linux-User #280138 with the Linux Counter, &lt;a href=&quot;http://counter.li.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://counter.li.org/&lt;/a&gt;&lt;br&gt;##################### Debian GNU/Linux Consultant #####################
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.tamay-dogan.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tamay-dogan.net/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Michelle Konzack
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.can4linux.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.can4linux.org/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Apt. 917
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.flexray4linux.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flexray4linux.org/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 50, rue de Soultz
&lt;br&gt;Jabber &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26407456&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;linux4michelle@...&lt;/a&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 67100 Strabourg/France
&lt;br&gt;IRC &amp;nbsp; &amp;nbsp;#Debian (irc.icq.com) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tel. DE: +49 177 9351947
&lt;br&gt;ICQ &amp;nbsp; &amp;nbsp;#328449886 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Tel. FR: +33 &amp;nbsp;6 &amp;nbsp;61925193
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.pgp&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26407456/0/signature.pgp&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Which-connectors-are-recommended--tp26400166p26407456.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26404075</id>
	<title>Re: Which connectors are recommended?</title>
	<published>2009-11-17T23:52:05Z</published>
	<updated>2009-11-17T23:52:05Z</updated>
	<author>
		<name>isto.virtanen</name>
	</author>
	<content type="html">
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Hello Michelle,&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;In case Your environment is not extremely
bad, I'd go for M12.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;It is widely used e.g. in construction
machinery.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Connector is fairly good, although it
is meant only for assembly purposes, not to get opened and &amp;nbsp;closed
dozens of times.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Batch cables are available from many
suppliers and thus pricing is also pretty good.&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;You can also power small current units
through the connector.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;However, You must pay attention on the
short circuit protection since wire sizes are usually 0,34/0,5mm2 and with
longer cables (above 10m) standard slow circuit breakers possibly dont
operate at all. &lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;We have made some tests with 0.5mm2
cable with length of 25m having complete short circuit at the other end.
After half an hour circuit was still closed&amp;lt;g&amp;gt;&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Based on these experiences we have selected
a special 2A breaker for this use.&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;In case You need more power, You could
go to thick devicenet cabling with7/8&amp;#8221; connector.&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;You could try&lt;/font&gt;
&lt;br&gt;&lt;a href=&quot;http://www.lumberg-automation.com/main/common/serie.asp?ser=A05&amp;amp;cat=3&amp;amp;cat3=_2&amp;amp;lang=eng&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;http://www.lumberg-automation.com/main/common/serie.asp?ser=A05&amp;amp;cat=3&amp;amp;cat3=_2&amp;amp;lang=eng&lt;/font&gt;&lt;/a&gt;
&lt;br&gt;&lt;a href=http://www.woodhead.com/products/brad/bradconnectivity/connectorscordsets/bhnetworkmedia target=&quot;_top&quot; rel=&quot;nofollow&quot; /&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;http://www.woodhead.com/products/brad/bradconnectivity/connectorscordsets/bhnetworkmedia/&lt;/font&gt;&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;isto&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;table width=100%&gt;
&lt;tr valign=top&gt;
&lt;td&gt;&lt;font size=1 face=&quot;Default MultiLingual&quot;&gt;&lt;b&gt;Michelle Konzack&lt;/b&gt;&lt;/font&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;From:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;Michelle Konzack &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26404075&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;michelle.konzack@...&lt;/a&gt;&amp;gt;&lt;/font&gt;
&lt;tr valign=top&gt;
&lt;td&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;To:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;CAN List &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26404075&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;&amp;gt;&lt;/font&gt;
&lt;tr&gt;
&lt;td valign=top&gt;
&lt;td valign=top&gt;
&lt;td valign=top&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;Cc:&lt;/font&gt;
&lt;td&gt;
&lt;tr valign=top&gt;
&lt;td&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;Date:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;18.11.2009 02:16&lt;/font&gt;
&lt;tr valign=top&gt;
&lt;td&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;Subject:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;[CANLIST] Which connectors are recommended?&lt;/font&gt;&lt;/table&gt;
&lt;br&gt;
&lt;hr noshade&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;&lt;tt&gt;&lt;font size=2&gt;Hello,&lt;br&gt;
&lt;br&gt;
I have 24V Devices which are now controlled over CAN and &amp;nbsp;mostly &amp;nbsp;it
&amp;nbsp;is&lt;br&gt;
working already.&lt;br&gt;
&lt;br&gt;
Now I like to know, which connectors are recommended for the CAN-Bus.&lt;br&gt;
&lt;br&gt;
I need mostly automotive versions, some of the &amp;nbsp;devices &amp;nbsp;need
&amp;nbsp;at &amp;nbsp;least&lt;br&gt;
IP67 and I was already on the website of &amp;quot;Tyco Electronics&amp;quot; looking
&amp;nbsp;for&lt;br&gt;
connectors but I gaved up after 6 hours of search.&lt;br&gt;
&lt;br&gt;
Any suggestions?&lt;br&gt;
&lt;br&gt;
Thanks, Greetings and nice Day/Evening&lt;br&gt;
 &amp;nbsp; &amp;nbsp;Michelle Konzack&lt;br&gt;
 &amp;nbsp; &amp;nbsp;Electronic Engineer&lt;br&gt;
 &amp;nbsp; &amp;nbsp;Tamay Dogan Network&lt;br&gt;
 &amp;nbsp; &amp;nbsp;Debian GNU/Linux Consultant&lt;br&gt;
&lt;br&gt;
-- &lt;br&gt;
Linux-User #280138 with the Linux Counter, &lt;/font&gt;&lt;/tt&gt;&lt;a href=http://counter.li.org target=&quot;_top&quot; rel=&quot;nofollow&quot; /&gt;&lt;tt&gt;&lt;font size=2&gt;http://counter.li.org/&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=2&gt;&lt;br&gt;
##################### Debian GNU/Linux Consultant #####################&lt;br&gt;
&amp;lt;&lt;/font&gt;&lt;/tt&gt;&lt;a href=&quot;http://www.tamay-dogan.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;tt&gt;&lt;font size=2&gt;http://www.tamay-dogan.net/&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=2&gt;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Michelle Konzack&lt;br&gt;
&amp;lt;&lt;/font&gt;&lt;/tt&gt;&lt;a href=http://www.can4linux.org target=&quot;_top&quot; rel=&quot;nofollow&quot; /&gt;&lt;tt&gt;&lt;font size=2&gt;http://www.can4linux.org/&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=2&gt;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Apt. 917&lt;br&gt;
&amp;lt;&lt;/font&gt;&lt;/tt&gt;&lt;a href=http://www.flexray4linux.org target=&quot;_top&quot; rel=&quot;nofollow&quot; /&gt;&lt;tt&gt;&lt;font size=2&gt;http://www.flexray4linux.org/&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=2&gt;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 50, rue de Soultz&lt;br&gt;
Jabber &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26404075&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;linux4michelle@...&lt;/a&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
67100 Strabourg/France&lt;br&gt;
IRC &amp;nbsp; &amp;nbsp;#Debian (irc.icq.com) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tel. DE: +49 177 9351947&lt;br&gt;
ICQ &amp;nbsp; &amp;nbsp;#328449886 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Tel. FR: +33 &amp;nbsp;6 &amp;nbsp;61925193&lt;br&gt;
[attachment &amp;quot;signature.pgp&amp;quot; deleted by Isto Virtanen/1181/SANDVIK]
&lt;/font&gt;&lt;/tt&gt;
&lt;br&gt;
&lt;br&gt;&lt;FONT FACE=Verdana SIZE=-2 COLOR=808080&gt;
&lt;P&gt;
This e-mail is confidential and it is intended only for the addressees. Any review, dissemination, distribution, or copying of this message by persons or entities other than the intended recipient is prohibited. If you have received this e-mail in error, kindly notify us immediately by telephone or e-mail and delete the message from your system. The sender does not accept liability for any errors or omissions in the contents of this message which may arise as a result of the e-mail transmission.
&lt;P&gt;
&lt;/FONT&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Which-connectors-are-recommended--tp26400166p26404075.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26401514</id>
	<title>Re: Which connectors are recommended?</title>
	<published>2009-11-17T18:17:07Z</published>
	<updated>2009-11-17T18:17:07Z</updated>
	<author>
		<name>Michelle Konzack-3</name>
	</author>
	<content type="html">I have found the button by examing the Souce Code of the Webpage. &amp;nbsp;Maybe
&lt;br&gt;it should be redesigned... The button is hidden in the front of
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; CiA® and CANopen® are registered Community Trademarks of...
&lt;br&gt;&lt;br&gt;at the end of the Page and I can reach the button, if I disable the &amp;nbsp;CSS
&lt;br&gt;Stylesheet. 
&lt;br&gt;&lt;br&gt;Thanks, Greetings and nice Day/Evening
&lt;br&gt;&amp;nbsp; &amp;nbsp; Michelle Konzack
&lt;br&gt;&amp;nbsp; &amp;nbsp; Electronic Engineer
&lt;br&gt;&amp;nbsp; &amp;nbsp; Tamay Dogan Network
&lt;br&gt;&amp;nbsp; &amp;nbsp; Debian GNU/Linux Consultant
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Linux-User #280138 with the Linux Counter, &lt;a href=&quot;http://counter.li.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://counter.li.org/&lt;/a&gt;&lt;br&gt;##################### Debian GNU/Linux Consultant #####################
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.tamay-dogan.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tamay-dogan.net/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Michelle Konzack
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.can4linux.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.can4linux.org/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Apt. 917
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.flexray4linux.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flexray4linux.org/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 50, rue de Soultz
&lt;br&gt;Jabber &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26401514&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;linux4michelle@...&lt;/a&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 67100 Strabourg/France
&lt;br&gt;IRC &amp;nbsp; &amp;nbsp;#Debian (irc.icq.com) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tel. DE: +49 177 9351947
&lt;br&gt;ICQ &amp;nbsp; &amp;nbsp;#328449886 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Tel. FR: +33 &amp;nbsp;6 &amp;nbsp;61925193
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.pgp&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26401514/0/signature.pgp&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Which-connectors-are-recommended--tp26400166p26401514.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26401418</id>
	<title>RE: Re: Which connectors are recommended?</title>
	<published>2009-11-17T18:02:35Z</published>
	<updated>2009-11-17T18:02:35Z</updated>
	<author>
		<name>Steve Corrigan-2</name>
	</author>
	<content type="html">Michelle,
&lt;br&gt;&lt;br&gt;OK, I see. &amp;nbsp;Once you fill in the info boxes, they send it to you in a couple
&lt;br&gt;of days. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Still, you do get it.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Steve C.
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26401418&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;
&lt;br&gt;[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26401418&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;] On Behalf Of Michelle
&lt;br&gt;Konzack
&lt;br&gt;Sent: Tuesday, November 17, 2009 7:21 PM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26401418&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;
&lt;br&gt;Subject: [CANLIST] Re: Which connectors are recommended?
&lt;br&gt;&lt;br&gt;Hello Steve,
&lt;br&gt;&lt;br&gt;thankyou for your fast answer, but there is a problem because I can &amp;nbsp;not
&lt;br&gt;download anything. &amp;nbsp;I see, that only members can download directly, so I
&lt;br&gt;assumed, I hvae to check the boxes at &amp;nbsp;the &amp;nbsp;documents &amp;nbsp;and &amp;nbsp;there &amp;nbsp;is &amp;nbsp;a
&lt;br&gt;Button to click to get it, but nothing is there...
&lt;br&gt;&lt;br&gt;I was already there for 2-3 wesks or so, and it was the same problem.
&lt;br&gt;&lt;br&gt;I was interested in:
&lt;br&gt;&lt;br&gt;CiA 303-1 DR V1.6: CANopen additional specification Part 1: Cabling and
&lt;br&gt;connector pin assignment IGCO_303_1v01060001.pdf
&lt;br&gt;&lt;br&gt;CiA 418 DS V1.0.1: CANopen device profile for battery modules
&lt;br&gt;IGCO_418v01000102.pdf
&lt;br&gt;&lt;br&gt;CiA 419 DS V1.0.1: CANopen device profile for battery charger
&lt;br&gt;IGCO_419v01000102.pdf
&lt;br&gt;&lt;br&gt;and yes, I am already on the bottom of the page. &amp;nbsp;Is there a problem?
&lt;br&gt;&lt;br&gt;Thanks, Greetings and nice Day/Evening
&lt;br&gt;&amp;nbsp; &amp;nbsp; Michelle Konzack
&lt;br&gt;&amp;nbsp; &amp;nbsp; Electronic Engineer
&lt;br&gt;&amp;nbsp; &amp;nbsp; Tamay Dogan Network
&lt;br&gt;&amp;nbsp; &amp;nbsp; Debian GNU/Linux Consultant
&lt;br&gt;&lt;br&gt;&lt;br&gt;Am 2009-11-17 18:19:38, schrieb Steve Corrigan:
&lt;br&gt;&amp;gt; Hello Michelle,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Go to the CiA website and look under downloads for CiA 303-1. &amp;nbsp;
&lt;br&gt;&amp;gt; Everything you ever wanted to know is there for free.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.can-cia.org/index.php?id=440&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.can-cia.org/index.php?id=440&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Steve C.
&lt;br&gt;------------------------ END OF REPLIED MESSAGE ------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Linux-User #280138 with the Linux Counter, &lt;a href=&quot;http://counter.li.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://counter.li.org/&lt;/a&gt;&lt;br&gt;##################### Debian GNU/Linux Consultant #####################
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.tamay-dogan.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tamay-dogan.net/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Michelle Konzack
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.can4linux.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.can4linux.org/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Apt. 917
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.flexray4linux.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flexray4linux.org/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 50, rue de Soultz
&lt;br&gt;Jabber &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26401418&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;linux4michelle@...&lt;/a&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 67100 Strabourg/France
&lt;br&gt;IRC &amp;nbsp; &amp;nbsp;#Debian (irc.icq.com) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tel. DE: +49 177 9351947
&lt;br&gt;ICQ &amp;nbsp; &amp;nbsp;#328449886 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Tel. FR: +33 &amp;nbsp;6 &amp;nbsp;61925193
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26401418&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Which-connectors-are-recommended--tp26400166p26401418.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26401136</id>
	<title>Re: Which connectors are recommended?</title>
	<published>2009-11-17T17:20:42Z</published>
	<updated>2009-11-17T17:20:42Z</updated>
	<author>
		<name>Michelle Konzack-3</name>
	</author>
	<content type="html">Hello Steve,
&lt;br&gt;&lt;br&gt;thankyou for your fast answer, but there is a problem because I can &amp;nbsp;not
&lt;br&gt;download anything. &amp;nbsp;I see, that only members can download directly, so I
&lt;br&gt;assumed, I hvae to check the boxes at &amp;nbsp;the &amp;nbsp;documents &amp;nbsp;and &amp;nbsp;there &amp;nbsp;is &amp;nbsp;a
&lt;br&gt;Button to click to get it, but nothing is there...
&lt;br&gt;&lt;br&gt;I was already there for 2-3 wesks or so, and it was the same problem.
&lt;br&gt;&lt;br&gt;I was interested in:
&lt;br&gt;&lt;br&gt;CiA 303-1 DR V1.6: CANopen additional specification
&lt;br&gt;Part 1: Cabling and connector pin assignment
&lt;br&gt;IGCO_303_1v01060001.pdf
&lt;br&gt;&lt;br&gt;CiA 418 DS V1.0.1: CANopen device profile for battery modules
&lt;br&gt;IGCO_418v01000102.pdf
&lt;br&gt;&lt;br&gt;CiA 419 DS V1.0.1: CANopen device profile for battery charger
&lt;br&gt;IGCO_419v01000102.pdf
&lt;br&gt;&lt;br&gt;and yes, I am already on the bottom of the page. &amp;nbsp;Is there a problem?
&lt;br&gt;&lt;br&gt;Thanks, Greetings and nice Day/Evening
&lt;br&gt;&amp;nbsp; &amp;nbsp; Michelle Konzack
&lt;br&gt;&amp;nbsp; &amp;nbsp; Electronic Engineer
&lt;br&gt;&amp;nbsp; &amp;nbsp; Tamay Dogan Network
&lt;br&gt;&amp;nbsp; &amp;nbsp; Debian GNU/Linux Consultant
&lt;br&gt;&lt;br&gt;&lt;br&gt;Am 2009-11-17 18:19:38, schrieb Steve Corrigan:
&lt;br&gt;&amp;gt; Hello Michelle,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Go to the CiA website and look under downloads for CiA 303-1. &amp;nbsp;Everything
&lt;br&gt;&amp;gt; you ever wanted to know is there for free.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.can-cia.org/index.php?id=440&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.can-cia.org/index.php?id=440&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Steve C.
&lt;br&gt;------------------------ END OF REPLIED MESSAGE ------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Linux-User #280138 with the Linux Counter, &lt;a href=&quot;http://counter.li.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://counter.li.org/&lt;/a&gt;&lt;br&gt;##################### Debian GNU/Linux Consultant #####################
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.tamay-dogan.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tamay-dogan.net/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Michelle Konzack
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.can4linux.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.can4linux.org/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Apt. 917
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.flexray4linux.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flexray4linux.org/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 50, rue de Soultz
&lt;br&gt;Jabber &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26401136&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;linux4michelle@...&lt;/a&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 67100 Strabourg/France
&lt;br&gt;IRC &amp;nbsp; &amp;nbsp;#Debian (irc.icq.com) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tel. DE: +49 177 9351947
&lt;br&gt;ICQ &amp;nbsp; &amp;nbsp;#328449886 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Tel. FR: +33 &amp;nbsp;6 &amp;nbsp;61925193
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.pgp&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26401136/0/signature.pgp&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Which-connectors-are-recommended--tp26400166p26401136.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26400626</id>
	<title>Netburner CB34-EX</title>
	<published>2009-11-17T16:26:32Z</published>
	<updated>2009-11-17T16:26:32Z</updated>
	<author>
		<name>Masotta</name>
	</author>
	<content type="html">anybody out there having experience with the freescale MC5234 based
&lt;br&gt;Netburner CB34-EX &amp;nbsp;(CAN-Ethernet module) ?
&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;Pat
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26400626&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Which-connectors-are-recommended--tp26400166p26400626.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26400545</id>
	<title>RE: Which connectors are recommended?</title>
	<published>2009-11-17T16:19:38Z</published>
	<updated>2009-11-17T16:19:38Z</updated>
	<author>
		<name>Steve Corrigan-2</name>
	</author>
	<content type="html">Hello Michelle,
&lt;br&gt;&lt;br&gt;Go to the CiA website and look under downloads for CiA 303-1. &amp;nbsp;Everything
&lt;br&gt;you ever wanted to know is there for free.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.can-cia.org/index.php?id=440&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.can-cia.org/index.php?id=440&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Steve C.
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26400545&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;
&lt;br&gt;[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26400545&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;] On Behalf Of Michelle
&lt;br&gt;Konzack
&lt;br&gt;Sent: Tuesday, November 17, 2009 5:37 PM
&lt;br&gt;To: CAN List
&lt;br&gt;Subject: [CANLIST] Which connectors are recommended?
&lt;br&gt;&lt;br&gt;Hello,
&lt;br&gt;&lt;br&gt;I have 24V Devices which are now controlled over CAN and &amp;nbsp;mostly &amp;nbsp;it &amp;nbsp;is
&lt;br&gt;working already.
&lt;br&gt;&lt;br&gt;Now I like to know, which connectors are recommended for the CAN-Bus.
&lt;br&gt;&lt;br&gt;I need mostly automotive versions, some of the &amp;nbsp;devices &amp;nbsp;need &amp;nbsp;at &amp;nbsp;least
&lt;br&gt;IP67 and I was already on the website of &amp;quot;Tyco Electronics&amp;quot; looking &amp;nbsp;for
&lt;br&gt;connectors but I gaved up after 6 hours of search.
&lt;br&gt;&lt;br&gt;Any suggestions?
&lt;br&gt;&lt;br&gt;Thanks, Greetings and nice Day/Evening
&lt;br&gt;&amp;nbsp; &amp;nbsp; Michelle Konzack
&lt;br&gt;&amp;nbsp; &amp;nbsp; Electronic Engineer
&lt;br&gt;&amp;nbsp; &amp;nbsp; Tamay Dogan Network
&lt;br&gt;&amp;nbsp; &amp;nbsp; Debian GNU/Linux Consultant
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Linux-User #280138 with the Linux Counter, &lt;a href=&quot;http://counter.li.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://counter.li.org/&lt;/a&gt;&lt;br&gt;##################### Debian GNU/Linux Consultant #####################
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.tamay-dogan.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tamay-dogan.net/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Michelle Konzack
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.can4linux.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.can4linux.org/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Apt. 917
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.flexray4linux.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flexray4linux.org/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 50, rue de Soultz
&lt;br&gt;Jabber &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26400545&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;linux4michelle@...&lt;/a&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 67100 Strabourg/France
&lt;br&gt;IRC &amp;nbsp; &amp;nbsp;#Debian (irc.icq.com) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tel. DE: +49 177 9351947
&lt;br&gt;ICQ &amp;nbsp; &amp;nbsp;#328449886 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Tel. FR: +33 &amp;nbsp;6 &amp;nbsp;61925193
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26400545&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Which-connectors-are-recommended--tp26400166p26400545.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26400166</id>
	<title>Which connectors are recommended?</title>
	<published>2009-11-17T15:36:37Z</published>
	<updated>2009-11-17T15:36:37Z</updated>
	<author>
		<name>Michelle Konzack-3</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I have 24V Devices which are now controlled over CAN and &amp;nbsp;mostly &amp;nbsp;it &amp;nbsp;is
&lt;br&gt;working already.
&lt;br&gt;&lt;br&gt;Now I like to know, which connectors are recommended for the CAN-Bus.
&lt;br&gt;&lt;br&gt;I need mostly automotive versions, some of the &amp;nbsp;devices &amp;nbsp;need &amp;nbsp;at &amp;nbsp;least
&lt;br&gt;IP67 and I was already on the website of &amp;quot;Tyco Electronics&amp;quot; looking &amp;nbsp;for
&lt;br&gt;connectors but I gaved up after 6 hours of search.
&lt;br&gt;&lt;br&gt;Any suggestions?
&lt;br&gt;&lt;br&gt;Thanks, Greetings and nice Day/Evening
&lt;br&gt;&amp;nbsp; &amp;nbsp; Michelle Konzack
&lt;br&gt;&amp;nbsp; &amp;nbsp; Electronic Engineer
&lt;br&gt;&amp;nbsp; &amp;nbsp; Tamay Dogan Network
&lt;br&gt;&amp;nbsp; &amp;nbsp; Debian GNU/Linux Consultant
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Linux-User #280138 with the Linux Counter, &lt;a href=&quot;http://counter.li.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://counter.li.org/&lt;/a&gt;&lt;br&gt;##################### Debian GNU/Linux Consultant #####################
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.tamay-dogan.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tamay-dogan.net/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Michelle Konzack
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.can4linux.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.can4linux.org/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Apt. 917
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.flexray4linux.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flexray4linux.org/&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 50, rue de Soultz
&lt;br&gt;Jabber &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26400166&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;linux4michelle@...&lt;/a&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 67100 Strabourg/France
&lt;br&gt;IRC &amp;nbsp; &amp;nbsp;#Debian (irc.icq.com) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tel. DE: +49 177 9351947
&lt;br&gt;ICQ &amp;nbsp; &amp;nbsp;#328449886 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Tel. FR: +33 &amp;nbsp;6 &amp;nbsp;61925193
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.pgp&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26400166/0/signature.pgp&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Which-connectors-are-recommended--tp26400166p26400166.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26386459</id>
	<title>Re: Socket CAN (Re: Re: Fwd: Quad PCI-104/PC-104+ CAN card?)</title>
	<published>2009-11-17T00:35:30Z</published>
	<updated>2009-11-17T00:35:30Z</updated>
	<author>
		<name>Sebastian Haas-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;well, one problem of Socket CAN is the poor usage/utilization of socket
&lt;br&gt;buffers within the Linux kernel. I mean the socket interface of the
&lt;br&gt;kernel is intentionally be used for greater transfer than just a single
&lt;br&gt;CAN message (8bytes and DLC and ID). This results in many context
&lt;br&gt;switches and a lot of overhead within the kernel. But that is not only a
&lt;br&gt;problem of Socket CAN, can4linux and many other CAN APIs are making a
&lt;br&gt;context switch per message for sending/receiving too (I know there a
&lt;br&gt;some APIs with a kind of bulk transfer).
&lt;br&gt;&lt;br&gt;I did some performance tests here with an Atmel AT91SAM9262... The test
&lt;br&gt;application used 3 threads (sending - slept to most time, receiving,
&lt;br&gt;processing) and I came to 1500 message per seconds in receiving
&lt;br&gt;direction. This isn't by far a good result, but I think it can be improved.
&lt;br&gt;&lt;br&gt;Improvment depends on your application. If you need low latency and a
&lt;br&gt;maximum of throughput with low CPU load, why not implement your protocol
&lt;br&gt;in kernel space like BCM and ISOTP (already available for Socket CAN). I
&lt;br&gt;can think about a J1939 implementation especially for large transfers
&lt;br&gt;using the transport protocol or a ISO11783 with ETP. Move this stuff to
&lt;br&gt;kernel space may also be an option for more or less time critical tasks
&lt;br&gt;like periodic sending of many messages.
&lt;br&gt;&lt;br&gt;PS: There is also a realtime version of Socket CAN for Xenomai available.
&lt;br&gt;&lt;br&gt;Sebastian
&lt;br&gt;&lt;br&gt;Steinhoff schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; when I look to mass of code used to transfer just 8 bytes of data ... I
&lt;br&gt;&amp;gt; would expect high latency and huge CPU load.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Best Regards
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Armin Steinhoff
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26386459&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;isto.virtanen@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Greetings all,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; since Socket CAN was brougth up, I wanted to ask if You should have
&lt;br&gt;&amp;gt;&amp;gt; experiences on the performance.
&lt;br&gt;&amp;gt;&amp;gt; We have currently some prototype COTS HW with socket and we are not
&lt;br&gt;&amp;gt;&amp;gt; happy with it.
&lt;br&gt;&amp;gt;&amp;gt; With ARM9-architecture running Linux there seems to be a some problems
&lt;br&gt;&amp;gt;&amp;gt; in task switching and thus heavy CPU-load.
&lt;br&gt;&amp;gt;&amp;gt; What kind of CPU-loads or response times whould one expect from this
&lt;br&gt;&amp;gt;&amp;gt; implementation?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; isto
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; *Steinhoff* 	
&lt;br&gt;&amp;gt;&amp;gt; 	From: 	Steinhoff &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26386459&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steinhoff@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 	
&lt;br&gt;&amp;gt;&amp;gt; 	To: 	&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26386459&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 	
&lt;br&gt;&amp;gt;&amp;gt; 	Cc: 	
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 	
&lt;br&gt;&amp;gt;&amp;gt; 	Date: 	16.11.2009 14:35
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 	
&lt;br&gt;&amp;gt;&amp;gt; 	Subject: 	Re: [CANLIST] Re: Fwd: Quad PCI-104/PC-104+ CAN card?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Sebastian Haas wrote:
&lt;br&gt;&amp;gt;&amp;gt; Heinz-Jürgen Oertel schrieb:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; Am Mittwoch, 11. November 2009 17:37:04 schrieb Steinhoff:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; Michael,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; we offer boards with 4 CAN channels for QNX 6.x :
&lt;br&gt;&amp;gt;&amp;gt; for both, Basic CAN (SJA1000) and Full CAN (Bosch CC770)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Our offered CAN boards with 4 CAN channels are OEM versions of boards
&lt;br&gt;&amp;gt;&amp;gt; from EMS Wuensche. I saw that their PCI-104 boards with 4 channels are
&lt;br&gt;&amp;gt;&amp;gt; not online, yet, but they are available! You can check their PCI board
&lt;br&gt;&amp;gt;&amp;gt; online with the same design:
&lt;br&gt;&amp;gt;&amp;gt; _http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multi_
&lt;br&gt;&amp;gt;&amp;gt; ple-channels-cpcpci.html
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Best regards,
&lt;br&gt;&amp;gt;&amp;gt; Armin Steinhoff
&lt;br&gt;&amp;gt;&amp;gt; _www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf_
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; can4linux is available too for the PC104m at least,
&lt;br&gt;&amp;gt;&amp;gt; the one equipped with up to four sja1000.
&lt;br&gt;&amp;gt;&amp;gt; If the electric design is the same as for the PCI boards,
&lt;br&gt;&amp;gt;&amp;gt; the driver can be used for the PCI-104 as well.
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; Yes it is.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The boards (PCI, PCI-104 and PC-104) are supported by Socket CAN too.
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; The design of the electronic of a PC/104 (ISA) and a PC/104plus (PCI)
&lt;br&gt;&amp;gt;&amp;gt; board is completely different.
&lt;br&gt;&amp;gt;&amp;gt; An individual driver has to care about these different designs.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The driver provided by can4linux is a multi board driver which
&lt;br&gt;&amp;gt;&amp;gt; supports ISA and PCI devices ... but there is necessary an individual
&lt;br&gt;&amp;gt;&amp;gt; configuration of the driver .
&lt;br&gt;&amp;gt;&amp;gt; But that driver offers the same API for the development of CAN based
&lt;br&gt;&amp;gt;&amp;gt; applications, what seems also the case with the Socket CAN interface.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Regards
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Armin Steinhoff
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; This e-mail is confidential and it is intended only for the
&lt;br&gt;&amp;gt;&amp;gt; addressees. Any review, dissemination, distribution, or copying of
&lt;br&gt;&amp;gt;&amp;gt; this message by persons or entities other than the intended recipient
&lt;br&gt;&amp;gt;&amp;gt; is prohibited. If you have received this e-mail in error, kindly
&lt;br&gt;&amp;gt;&amp;gt; notify us immediately by telephone or e-mail and delete the message
&lt;br&gt;&amp;gt;&amp;gt; from your system. The sender does not accept liability for any errors
&lt;br&gt;&amp;gt;&amp;gt; or omissions in the contents of this message which may arise as a
&lt;br&gt;&amp;gt;&amp;gt; result of the e-mail transmission.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Mit freundlichen Gruessen/Best Regards,
&lt;br&gt;&lt;br&gt;Sebastian Haas
&lt;br&gt;Software Entwicklung/Software Development
&lt;br&gt;&lt;br&gt;Phone: +49-9451-9432-22
&lt;br&gt;Fax &amp;nbsp;: +49-9451-9432-12
&lt;br&gt;Email: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26386459&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;haas@...&lt;/a&gt;
&lt;br&gt;Web &amp;nbsp;: www.ems-wuensche.com
&lt;br&gt;-- 
&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
&lt;br&gt;Visit us at SPS/IPC/DRIVES Nuremberg
&lt;br&gt;from 24 - 26 Nov 2009 at hall 6/422
&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
&lt;br&gt;EMS Dr. Thomas Wuensche e.K.
&lt;br&gt;Sonnenhang 3
&lt;br&gt;85304 Ilmmuenster
&lt;br&gt;HRA Neuburg a.d. Donau, HR-Nr. 70.106
&lt;br&gt;Phone: +49-8441-490260
&lt;br&gt;Fax &amp;nbsp;: +49-8441-81860
&lt;br&gt;&lt;a href=&quot;http://www.ems-wuensche.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ems-wuensche.com&lt;/a&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26386459&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fwd%3A-Quad-PCI-104-PC-104%2B-CAN-card--tp26304826p26386459.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26378971</id>
	<title>Re: Socket CAN (Re: Re: Fwd: Quad PCI-104/PC-104+ CAN card?)</title>
	<published>2009-11-16T12:01:24Z</published>
	<updated>2009-11-16T12:01:24Z</updated>
	<author>
		<name>Armin Steinhoff-2</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta content=&quot;text/html;charset=ISO-8859-1&quot; http-equiv=&quot;Content-Type&quot;&gt;
  &lt;title&gt;&lt;/title&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
&lt;br&gt;
Hi,&lt;br&gt;
&lt;br&gt;
when I look to mass of code used to transfer just 8 bytes of data ... I
would expect high latency and huge CPU load.&lt;br&gt;
&lt;br&gt;
Best Regards&lt;br&gt;
&lt;br&gt;
Armin Steinhoff&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26378971&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;isto.virtanen@...&lt;/a&gt;
wrote:
&lt;blockquote cite=&quot;mid:OFD3D60D99.E79D9B19-ONC2257670.0054D7A7-C2257670.00558AB8@sandvik.com&quot; type=&quot;cite&quot;&gt;&lt;br&gt;
  &lt;font face=&quot;sans-serif&quot; size=&quot;2&quot;&gt;Greetings all,&lt;/font&gt; &lt;br&gt;
  &lt;br&gt;
  &lt;font face=&quot;sans-serif&quot; size=&quot;2&quot;&gt;since Socket CAN was brougth up, I
wanted
to ask if You should have experiences on the performance.&lt;/font&gt; &lt;br&gt;
  &lt;font face=&quot;sans-serif&quot; size=&quot;2&quot;&gt;We have currently some prototype
COTS
HW with socket and we are not happy with it.&lt;/font&gt; &lt;br&gt;
  &lt;font face=&quot;sans-serif&quot; size=&quot;2&quot;&gt;With ARM9-architecture running Linux
there seems to be a some problems in task switching and thus heavy
CPU-load.&lt;/font&gt; &lt;br&gt;
  &lt;font face=&quot;sans-serif&quot; size=&quot;2&quot;&gt;What kind of CPU-loads or response
times
whould one expect from this implementation?&lt;/font&gt; &lt;br&gt;
  &lt;br&gt;
  &lt;font face=&quot;sans-serif&quot; size=&quot;2&quot;&gt;isto&lt;/font&gt; &lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  &lt;table width=&quot;100%&quot;&gt;
    &lt;tbody&gt;
      &lt;tr valign=&quot;top&quot;&gt;
        &lt;td&gt;&lt;font face=&quot;Default MultiLingual&quot; size=&quot;1&quot;&gt;&lt;b&gt;Steinhoff&lt;/b&gt;&lt;/font&gt;
        &lt;/td&gt;
        &lt;td&gt;&lt;br&gt;
        &lt;/td&gt;
        &lt;td&gt;&lt;font color=&quot;#5f5f5f&quot; face=&quot;sans-serif&quot; size=&quot;1&quot;&gt;From:&lt;/font&gt;
        &lt;/td&gt;
        &lt;td&gt;&lt;font face=&quot;sans-serif&quot; size=&quot;1&quot;&gt;Steinhoff
        &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26378971&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steinhoff@...&lt;/a&gt;&lt;/font&gt;
        &lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr valign=&quot;top&quot;&gt;
        &lt;td&gt; &lt;br&gt;
        &lt;/td&gt;
        &lt;td&gt;&lt;br&gt;
        &lt;/td&gt;
        &lt;td&gt;&lt;font color=&quot;#5f5f5f&quot; face=&quot;sans-serif&quot; size=&quot;1&quot;&gt;To:&lt;/font&gt;
        &lt;/td&gt;
        &lt;td&gt;&lt;font face=&quot;sans-serif&quot; size=&quot;1&quot;&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26378971&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;&lt;/font&gt;
        &lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
        &lt;td valign=&quot;top&quot;&gt; &lt;br&gt;
        &lt;/td&gt;
        &lt;td valign=&quot;top&quot;&gt;&lt;br&gt;
        &lt;/td&gt;
        &lt;td valign=&quot;top&quot;&gt;&lt;font color=&quot;#5f5f5f&quot; face=&quot;sans-serif&quot; size=&quot;1&quot;&gt;Cc:&lt;/font&gt; &lt;/td&gt;
        &lt;td&gt;&lt;br&gt;
        &lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr valign=&quot;top&quot;&gt;
        &lt;td&gt; &lt;br&gt;
        &lt;/td&gt;
        &lt;td&gt;&lt;br&gt;
        &lt;/td&gt;
        &lt;td&gt;&lt;font color=&quot;#5f5f5f&quot; face=&quot;sans-serif&quot; size=&quot;1&quot;&gt;Date:&lt;/font&gt;
        &lt;/td&gt;
        &lt;td&gt;&lt;font face=&quot;sans-serif&quot; size=&quot;1&quot;&gt;16.11.2009 14:35&lt;/font&gt; &lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr valign=&quot;top&quot;&gt;
        &lt;td&gt; &lt;br&gt;
        &lt;/td&gt;
        &lt;td&gt;&lt;br&gt;
        &lt;/td&gt;
        &lt;td&gt;&lt;font color=&quot;#5f5f5f&quot; face=&quot;sans-serif&quot; size=&quot;1&quot;&gt;Subject:&lt;/font&gt;
        &lt;/td&gt;
        &lt;td&gt;&lt;font face=&quot;sans-serif&quot; size=&quot;1&quot;&gt;Re: [CANLIST] Re: Fwd:
Quad PCI-104/PC-104+
CAN card?&lt;/font&gt;&lt;/td&gt;
      &lt;/tr&gt;
    &lt;/tbody&gt;
  &lt;/table&gt;
  &lt;br&gt;
  &lt;hr noshade=&quot;noshade&quot;&gt; &lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  &lt;font size=&quot;3&quot;&gt;Sebastian Haas wrote: &lt;/font&gt; &lt;br&gt;
  &lt;tt&gt;&lt;font size=&quot;3&quot;&gt;Heinz-J&amp;uuml;rgen Oertel schrieb:&lt;br&gt;
&amp;nbsp;&lt;/font&gt;&lt;/tt&gt; &lt;br&gt;
  &lt;tt&gt;&lt;font size=&quot;3&quot;&gt;Am Mittwoch, 11. November 2009 17:37:04 schrieb
Steinhoff:&lt;br&gt;
&amp;nbsp; &amp;nbsp;&lt;/font&gt;&lt;/tt&gt; &lt;br&gt;
  &lt;tt&gt;&lt;font size=&quot;3&quot;&gt;Michael,&lt;br&gt;
  &lt;br&gt;
we offer boards with 4 CAN channels for QNX 6.x :&lt;br&gt;
for both, Basic CAN (SJA1000) and Full CAN (Bosch CC770)&lt;br&gt;
  &lt;br&gt;
Our offered CAN boards with 4 CAN channels are OEM versions of boards&lt;br&gt;
from EMS Wuensche. I saw that their PCI-104 boards with 4 channels are&lt;br&gt;
not online, yet, but they are available! You can check their PCI board&lt;br&gt;
online with the same design:&lt;br&gt;
  &lt;/font&gt;&lt;/tt&gt;&lt;a moz-do-not-send=&quot;true&quot; href=&quot;http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;tt&gt;&lt;font color=&quot;blue&quot; size=&quot;3&quot;&gt;&lt;u&gt;http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multi&lt;/u&gt;&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=&quot;3&quot;&gt;&lt;br&gt;
ple-channels-cpcpci.html&lt;br&gt;
  &lt;br&gt;
Best regards,&lt;br&gt;
Armin Steinhoff&lt;br&gt;
  &lt;/font&gt;&lt;/tt&gt;&lt;a moz-do-not-send=&quot;true&quot; href=&quot;http://www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;tt&gt;&lt;font color=&quot;blue&quot; size=&quot;3&quot;&gt;&lt;u&gt;www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf&lt;/u&gt;&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=&quot;3&quot;&gt;&lt;br&gt;
  &lt;br&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/font&gt;&lt;/tt&gt; &lt;br&gt;
  &lt;tt&gt;&lt;font size=&quot;3&quot;&gt;can4linux is available too for the PC104m at least,&lt;br&gt;
the one equipped with up to four sja1000.&lt;br&gt;
If the electric design is the same as for the PCI boards,&lt;br&gt;
the driver can be used for the PCI-104 as well.&lt;br&gt;
&amp;nbsp; &amp;nbsp;&lt;/font&gt;&lt;/tt&gt; &lt;br&gt;
  &lt;tt&gt;&lt;font size=&quot;3&quot;&gt;Yes it is.&lt;br&gt;
  &lt;br&gt;
The boards (PCI, PCI-104 and PC-104) are supported by Socket CAN too.&lt;br&gt;
&amp;nbsp;&lt;/font&gt;&lt;/tt&gt; &lt;br&gt;
  &lt;font size=&quot;3&quot;&gt;The design of the electronic of a PC/104 (ISA) and a
PC/104plus
(PCI) board is completely different.&lt;br&gt;
An individual driver has to care about these different designs.&lt;br&gt;
  &lt;br&gt;
The driver provided by can4linux is a multi board driver which supports
ISA and PCI devices ... but there is necessary an individual
configuration
of the driver .&lt;br&gt;
But that driver offers the same API for the development of CAN based
applications,
what seems also the case with the Socket CAN interface.&lt;br&gt;
  &lt;br&gt;
Regards&lt;br&gt;
  &lt;br&gt;
Armin Steinhoff&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  &lt;/font&gt; &lt;br&gt;
  &lt;br&gt;
  &lt;p&gt;&lt;font color=&quot;#808080&quot; face=&quot;Verdana&quot; size=&quot;-2&quot;&gt;This e-mail is
confidential and it is intended only for the addressees. Any review,
dissemination, distribution, or copying of this message by persons or
entities other than the intended recipient is prohibited. If you have
received this e-mail in error, kindly notify us immediately by
telephone or e-mail and delete the message from your system. The sender
does not accept liability for any errors or omissions in the contents
of this message which may arise as a result of the e-mail transmission.
  &lt;/font&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fwd%3A-Quad-PCI-104-PC-104%2B-CAN-card--tp26304826p26378971.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26377402</id>
	<title>PCMCIA to USB adapter for CANcardXL?</title>
	<published>2009-11-16T10:26:22Z</published>
	<updated>2009-11-16T10:26:22Z</updated>
	<author>
		<name>Bo Wang-4</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;

&lt;/head&gt;
&lt;body class='hmmessage'&gt;
&amp;nbsp;&lt;BR&gt;
Dear All&lt;BR&gt;
&amp;nbsp;&lt;BR&gt;
I need to use my CANcardXL in an industrial PC which however doesn't have a PCMCIA port.&lt;BR&gt;
&amp;nbsp;&lt;BR&gt;
If I use&amp;nbsp;a PCMCIA to USB adapter (converter) to connect the CANcardXL to the USB port of the industrial PC, would it work? &lt;BR&gt;
&amp;nbsp;&lt;BR&gt;
Regards&lt;BR&gt;
&amp;nbsp;&lt;BR&gt;
Bo&lt;BR&gt; 		 	   		  &lt;br /&gt;&lt;hr /&gt;Add other email accounts to Hotmail in 3 easy steps. &lt;a href='http://clk.atdmt.com/UKM/go/186394593/direct/01/ ' target='_new' rel=&quot;nofollow&quot;&gt;Find out how.&lt;/a&gt;&lt;/body&gt;
&lt;/html&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PCMCIA-to-USB-adapter-for-CANcardXL--tp26377402p26377402.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26375455</id>
	<title>Testing CAN Peripheral on ARM11</title>
	<published>2009-11-16T08:29:42Z</published>
	<updated>2009-11-16T08:29:42Z</updated>
	<author>
		<name>Tummala, Girish</name>
	</author>
	<content type="html">&lt;HTML xmlns=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot;&gt;&lt;head&gt;&lt;META content=&quot;text/html; charset=us-ascii&quot; http-equiv=&quot;Content-Type&quot;&gt;



&lt;META content=&quot;text/html; charset=us-ascii&quot; HTTP-EQUIV=&quot;Content-Type&quot;&gt;
&lt;meta content=&quot;Microsoft Word 11 (filtered medium)&quot; name=Generator&gt;


&lt;/head&gt;&lt;BODY&gt;
&lt;P CLASS=&quot;cf3ebb14-94b3-433e-8778-d72680a385c5&quot;&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;font face=Arial size=2&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Hi,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font face=Arial size=2&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;I just need to verify CAN peripheral on an ARM11 processor
is functional or not.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font face=Arial size=2&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;What is the best and easy way to do that?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font face=Arial size=2&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;My processor just has a CAN controller, it doesn't have a
transceiver.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font face=Arial size=2&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Is it possible at all to verify CAN without having transceiver?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font face=Arial size=2&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Also what do the waveforms of CAN TxD and CAN RxD look like?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font face=Arial size=2&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Can I verify the peripheral probing these waveforms?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font face=Arial size=2&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Any ideas?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font face=Arial size=2&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font face=&quot;MS Reference Sans Serif&quot; size=2&gt;&lt;span style='font-size:10.0pt;font-family:&quot;MS Reference Sans Serif&quot;'&gt;Thanks,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font face=&quot;MS Reference Sans Serif&quot; size=2&gt;&lt;span style='font-size:10.0pt;font-family:&quot;MS Reference Sans Serif&quot;'&gt;Girish&lt;/span&gt;&lt;/font&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font face=&quot;Times New Roman&quot; size=3&gt;&lt;span style='font-size:
12.0pt'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/P&gt;
&lt;P&gt;&lt;SPAN STYLE=&quot;FONT-SIZE: 8pt&quot;&gt;
&lt;HR&gt;
&lt;/SPAN&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN STYLE=&quot;FONT-SIZE: 8pt&quot;&gt;This e-mail and any attachments may contain confidential material for the sole use of the intended recipient. If you are not the intended recipient, please be aware that any disclosure, copying, distribution or use of this e-mail or any attachment is prohibited. If you have received this e-mail in error, please contact the sender and delete all copies.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN STYLE=&quot;FONT-SIZE: 8pt&quot;&gt;Thank you for your cooperation.&lt;/SPAN&gt;&lt;/P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Testing-CAN-Peripheral-on-ARM11-tp26375455p26375455.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26374857</id>
	<title>Socket CAN (Re: Re: Fwd: Quad PCI-104/PC-104+ CAN card?)</title>
	<published>2009-11-16T07:34:22Z</published>
	<updated>2009-11-16T07:34:22Z</updated>
	<author>
		<name>isto.virtanen</name>
	</author>
	<content type="html">
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Greetings all,&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;since Socket CAN was brougth up, I wanted
to ask if You should have experiences on the performance.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;We have currently some prototype COTS
HW with socket and we are not happy with it.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;With ARM9-architecture running Linux
there seems to be a some problems in task switching and thus heavy CPU-load.&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;What kind of CPU-loads or response times
whould one expect from this implementation?&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;isto&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;table width=100%&gt;
&lt;tr valign=top&gt;
&lt;td&gt;&lt;font size=1 face=&quot;Default MultiLingual&quot;&gt;&lt;b&gt;Steinhoff&lt;/b&gt;&lt;/font&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;From:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;Steinhoff &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26374857&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steinhoff@...&lt;/a&gt;&amp;gt;&lt;/font&gt;
&lt;tr valign=top&gt;
&lt;td&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;To:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26374857&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;&lt;/font&gt;
&lt;tr&gt;
&lt;td valign=top&gt;
&lt;td valign=top&gt;
&lt;td valign=top&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;Cc:&lt;/font&gt;
&lt;td&gt;
&lt;tr valign=top&gt;
&lt;td&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;Date:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;16.11.2009 14:35&lt;/font&gt;
&lt;tr valign=top&gt;
&lt;td&gt;
&lt;td&gt;
&lt;td&gt;&lt;font size=1 color=#5f5f5f face=&quot;sans-serif&quot;&gt;Subject:&lt;/font&gt;
&lt;td&gt;&lt;font size=1 face=&quot;sans-serif&quot;&gt;Re: [CANLIST] Re: Fwd: Quad PCI-104/PC-104+
CAN card?&lt;/font&gt;&lt;/table&gt;
&lt;br&gt;
&lt;hr noshade&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=3&gt;Sebastian Haas wrote: &lt;/font&gt;
&lt;br&gt;&lt;tt&gt;&lt;font size=3&gt;Heinz-Jürgen Oertel schrieb:&lt;br&gt;
 &amp;nbsp;&lt;/font&gt;&lt;/tt&gt;
&lt;br&gt;&lt;tt&gt;&lt;font size=3&gt;Am Mittwoch, 11. November 2009 17:37:04 schrieb Steinhoff:&lt;br&gt;
 &amp;nbsp; &amp;nbsp;&lt;/font&gt;&lt;/tt&gt;
&lt;br&gt;&lt;tt&gt;&lt;font size=3&gt;Michael,&lt;br&gt;
&lt;br&gt;
we offer boards with 4 CAN channels for QNX 6.x :&lt;br&gt;
for both, Basic CAN (SJA1000) and Full CAN (Bosch CC770)&lt;br&gt;
&lt;br&gt;
Our offered CAN boards with 4 CAN channels are OEM versions of boards&lt;br&gt;
from EMS Wuensche. I saw that their PCI-104 boards with 4 channels are&lt;br&gt;
not online, yet, but they are available! You can check their PCI board&lt;br&gt;
online with the same design:&lt;br&gt;
&lt;/font&gt;&lt;/tt&gt;&lt;a href=&quot;http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;tt&gt;&lt;font size=3 color=blue&gt;&lt;u&gt;http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multi&lt;/u&gt;&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=3&gt;&lt;br&gt;
ple-channels-cpcpci.html&lt;br&gt;
&lt;br&gt;
Best regards,&lt;br&gt;
Armin Steinhoff&lt;br&gt;
&lt;/font&gt;&lt;/tt&gt;&lt;a href=&quot;http://www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;tt&gt;&lt;font size=3 color=blue&gt;&lt;u&gt;www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf&lt;/u&gt;&lt;/font&gt;&lt;/tt&gt;&lt;/a&gt;&lt;tt&gt;&lt;font size=3&gt;&lt;br&gt;
&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/font&gt;&lt;/tt&gt;
&lt;br&gt;&lt;tt&gt;&lt;font size=3&gt;can4linux is available too for the PC104m at least,&lt;br&gt;
the one equipped with up to four sja1000.&lt;br&gt;
If the electric design is the same as for the PCI boards,&lt;br&gt;
the driver can be used for the PCI-104 as well.&lt;br&gt;
 &amp;nbsp; &amp;nbsp;&lt;/font&gt;&lt;/tt&gt;
&lt;br&gt;&lt;tt&gt;&lt;font size=3&gt;Yes it is.&lt;br&gt;
&lt;br&gt;
The boards (PCI, PCI-104 and PC-104) are supported by Socket CAN too.&lt;br&gt;
 &amp;nbsp;&lt;/font&gt;&lt;/tt&gt;
&lt;br&gt;&lt;font size=3&gt;The design of the electronic of a PC/104 (ISA) and a PC/104plus
(PCI) board is completely different.&lt;br&gt;
An individual driver has to care about these different designs.&lt;br&gt;
&lt;br&gt;
The driver provided by can4linux is a multi board driver which supports
ISA and PCI devices ... but there is necessary an individual configuration
of the driver .&lt;br&gt;
But that driver offers the same API for the development of CAN based applications,
what seems also the case with the Socket CAN interface.&lt;br&gt;
&lt;br&gt;
Regards&lt;br&gt;
&lt;br&gt;
Armin Steinhoff&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;FONT FACE=Verdana SIZE=-2 COLOR=808080&gt;
&lt;P&gt;
This e-mail is confidential and it is intended only for the addressees. Any review, dissemination, distribution, or copying of this message by persons or entities other than the intended recipient is prohibited. If you have received this e-mail in error, kindly notify us immediately by telephone or e-mail and delete the message from your system. The sender does not accept liability for any errors or omissions in the contents of this message which may arise as a result of the e-mail transmission.
&lt;P&gt;
&lt;/FONT&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fwd%3A-Quad-PCI-104-PC-104%2B-CAN-card--tp26304826p26374857.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26371047</id>
	<title>Re: Re: Fwd: Quad PCI-104/PC-104+ CAN card?</title>
	<published>2009-11-16T03:56:17Z</published>
	<updated>2009-11-16T03:56:17Z</updated>
	<author>
		<name>Armin Steinhoff-2</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta content=&quot;text/html;charset=ISO-8859-1&quot; http-equiv=&quot;Content-Type&quot;&gt;
  &lt;title&gt;&lt;/title&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
Sebastian Haas wrote:
&lt;blockquote cite=&quot;mid:4B012EBA.8040909@ems-wuensche.com&quot; type=&quot;cite&quot;&gt;
  &lt;pre wrap=&quot;&quot;&gt;Heinz-J&amp;uuml;rgen Oertel schrieb:
  &lt;/pre&gt;
  &lt;blockquote type=&quot;cite&quot;&gt;
    &lt;pre wrap=&quot;&quot;&gt;Am Mittwoch, 11. November 2009 17:37:04 schrieb Steinhoff:
    &lt;/pre&gt;
    &lt;blockquote type=&quot;cite&quot;&gt;
      &lt;pre wrap=&quot;&quot;&gt;Michael,

we offer boards with 4 CAN channels for QNX 6.x :
for both, Basic CAN (SJA1000) and Full CAN (Bosch CC770)

Our offered CAN boards with 4 CAN channels are OEM versions of boards
from EMS Wuensche. I saw that their PCI-104 boards with 4 channels are
not online, yet, but they are available! You can check their PCI board
online with the same design:
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multi&lt;/a&gt;
ple-channels-cpcpci.html

Best regards,
Armin Steinhoff
&lt;a class=&quot;moz-txt-link-abbreviated&quot; href=&quot;http://www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf&lt;/a&gt;

      &lt;/pre&gt;
    &lt;/blockquote&gt;
    &lt;pre wrap=&quot;&quot;&gt;can4linux is available too for the PC104m at least,
the one equipped with up to four sja1000.
If the electric design is the same as for the PCI boards,
the driver can be used for the PCI-104 as well.
    &lt;/pre&gt;
  &lt;/blockquote&gt;
  &lt;pre wrap=&quot;&quot;&gt;&lt;!----&gt;Yes it is.

The boards (PCI, PCI-104 and PC-104) are supported by Socket CAN too.
  &lt;/pre&gt;
&lt;/blockquote&gt;
The design of the electronic of a PC/104 (ISA) and a PC/104plus (PCI)
board is completely different.&lt;br&gt;
An individual driver has to care about these different designs.&lt;br&gt;
&lt;br&gt;
The driver provided by can4linux is a multi board driver which supports
ISA and PCI devices ... but there is necessary an individual
configuration of the driver .&lt;br&gt;
But that driver offers the same API for the development of CAN based
applications, what seems also the case with the Socket CAN interface.&lt;br&gt;
&lt;br&gt;
Regards&lt;br&gt;
&lt;br&gt;
Armin Steinhoff&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fwd%3A-Quad-PCI-104-PC-104%2B-CAN-card--tp26304826p26371047.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26370321</id>
	<title>Re: Fwd: Quad PCI-104/PC-104+ CAN card?</title>
	<published>2009-11-16T02:51:38Z</published>
	<updated>2009-11-16T02:51:38Z</updated>
	<author>
		<name>Sebastian Haas-2</name>
	</author>
	<content type="html">Heinz-Jürgen Oertel schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Am Mittwoch, 11. November 2009 17:37:04 schrieb Steinhoff:
&lt;br&gt;&amp;gt;&amp;gt; Michael,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; we offer boards with 4 CAN channels for QNX 6.x :
&lt;br&gt;&amp;gt;&amp;gt; for both, Basic CAN (SJA1000) and Full CAN (Bosch CC770)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Our offered CAN boards with 4 CAN channels are OEM versions of boards
&lt;br&gt;&amp;gt;&amp;gt; from EMS Wuensche. I saw that their PCI-104 boards with 4 channels are
&lt;br&gt;&amp;gt;&amp;gt; not online, yet, but they are available! You can check their PCI board
&lt;br&gt;&amp;gt;&amp;gt; online with the same design:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multi&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; ple-channels-cpcpci.html
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Best regards,
&lt;br&gt;&amp;gt;&amp;gt; Armin Steinhoff
&lt;br&gt;&amp;gt;&amp;gt; www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; can4linux is available too for the PC104m at least,
&lt;br&gt;&amp;gt; the one equipped with up to four sja1000.
&lt;br&gt;&amp;gt; If the electric design is the same as for the PCI boards,
&lt;br&gt;&amp;gt; the driver can be used for the PCI-104 as well.
&lt;/div&gt;Yes it is.
&lt;br&gt;&lt;br&gt;The boards (PCI, PCI-104 and PC-104) are supported by Socket CAN too.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Mit freundlichen Gruessen/Best Regards,
&lt;br&gt;&lt;br&gt;Sebastian Haas
&lt;br&gt;Software Entwicklung/Software Development
&lt;br&gt;&lt;br&gt;Phone: +49-9451-9432-22
&lt;br&gt;Fax &amp;nbsp;: +49-9451-9432-12
&lt;br&gt;Email: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26370321&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;haas@...&lt;/a&gt;
&lt;br&gt;Web &amp;nbsp;: www.ems-wuensche.com
&lt;br&gt;-- 
&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
&lt;br&gt;Visit us at SPS/IPC/DRIVES Nuremberg
&lt;br&gt;from 24 - 26 Nov 2009 at hall 6/422
&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
&lt;br&gt;EMS Dr. Thomas Wuensche e.K.
&lt;br&gt;Sonnenhang 3
&lt;br&gt;85304 Ilmmuenster
&lt;br&gt;HRA Neuburg a.d. Donau, HR-Nr. 70.106
&lt;br&gt;Phone: +49-8441-490260
&lt;br&gt;Fax &amp;nbsp;: +49-8441-81860
&lt;br&gt;&lt;a href=&quot;http://www.ems-wuensche.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ems-wuensche.com&lt;/a&gt;&lt;br&gt;--
&lt;br&gt;Archives and useful links: &lt;a href=&quot;http://groups.yahoo.com/group/CANbus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.yahoo.com/group/CANbus&lt;/a&gt;&lt;br&gt;Subscribe and unsubscribe at www.vector-informatik.com/canlist/
&lt;br&gt;Report any problems to &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26370321&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist-owner@...&lt;/a&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fwd%3A-Quad-PCI-104-PC-104%2B-CAN-card--tp26304826p26370321.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26322804</id>
	<title>Re: Fwd: Quad PCI-104/PC-104+ CAN card?</title>
	<published>2009-11-12T08:56:22Z</published>
	<updated>2009-11-12T08:56:22Z</updated>
	<author>
		<name>Armin Steinhoff-2</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;body&gt;
Hello again,&lt;br&gt;&lt;br&gt;
we have asked EMS-Wuensche to put online their data sheet for the PCI-104
board with 4 CAN channels.&lt;br&gt;
Here it is, it should be exactly what you are looking for:&lt;br&gt;
&lt;a href=&quot;http://www.ems-wuensche.com/product/datasheet/html/can-pci-104-passive-plugincard-cpc104p.html&quot; eudora=&quot;autourl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
http://www.ems-wuensche.com/product/datasheet/html/can-pci-104-passive-plugincard-cpc104p.html&lt;br&gt;
&lt;br&gt;
&lt;/a&gt;We have good experience with this board, running QNX 6.x!&lt;br&gt;&lt;br&gt;
Best regards,&lt;br&gt;
Armin Steinhoff&lt;br&gt;&lt;br&gt;
&lt;br&gt;
At 17:37 11.11.2009 +0100, Steinhoff wrote:&lt;br&gt;
&lt;blockquote type=cite class=cite cite=&quot;&quot;&gt;Michael,&lt;br&gt;&lt;br&gt;
we offer boards with 4 CAN channels for QNX 6.x : &lt;br&gt;
for both, Basic CAN (SJA1000) and Full CAN (Bosch CC770)&lt;br&gt;&lt;br&gt;
Our offered CAN boards with 4 CAN channels are OEM versions of boards
from EMS Wuensche. I saw that their PCI-104 boards with 4 channels are
not online, yet, but they are available! You can check their PCI board
online with the same design:&lt;br&gt;
&lt;a href=&quot;http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multiple-channels-cpcpci.html&quot; eudora=&quot;autourl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multiple-channels-cpcpci.html&lt;/a&gt;
&lt;br&gt;&lt;br&gt;
Best regards,&lt;br&gt;
Armin Steinhoff&lt;br&gt;
&lt;a href=&quot;http://www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf&quot; eudora=&quot;autourl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;
&lt;br&gt;
&lt;blockquote type=cite class=cite cite=&quot;&quot;&gt;From: &amp;quot;Michael J.
Noone&amp;quot;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26322804&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mnoone@...&lt;/a&gt;&lt;br&gt;
To:
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26322804&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;canlist@...&lt;/a&gt;&lt;br&gt;
Subject: [CANLIST] Quad PCI-104/PC-104+ CAN card?&lt;br&gt;
Date: Wed, 11 Nov 2009 09:17:14 -0500 (EST)&lt;br&gt;&lt;br&gt;
&lt;br&gt;
&lt;font size=2&gt;Hi  does anybody know of a PCI-104 or PC-104+ card that had
4 CAN controllers built in? The best Ive been able to find is a dual CAN
controller card.&lt;br&gt;
&amp;nbsp;&lt;br&gt;
Thanks!&lt;br&gt;
&amp;nbsp;&lt;br&gt;
Michael J. Noone&lt;br&gt;
Boston Dynamics&lt;br&gt;
&lt;/font&gt;&lt;font face=&quot;Times New Roman, Times&quot;&gt;&amp;nbsp;&lt;br&gt;
&amp;nbsp;&lt;/font&gt;&lt;/blockquote&gt;&lt;/blockquote&gt;&lt;/body&gt;
&lt;/html&gt;

--
Archives and useful links: http://groups.yahoo.com/group/CANbus
Subscribe and unsubscribe at www.vector-informatik.com/canlist/
Report any problems to &lt;canlist-owner@vector-informatik.de&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fwd%3A-Quad-PCI-104-PC-104%2B-CAN-card--tp26304826p26322804.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26318672</id>
	<title>Re: Fwd: Quad PCI-104/PC-104+ CAN card?</title>
	<published>2009-11-12T04:59:39Z</published>
	<updated>2009-11-12T04:59:39Z</updated>
	<author>
		<name>Heinz-Juergen Oertel</name>
	</author>
	<content type="html">Am Mittwoch, 11. November 2009 17:37:04 schrieb Steinhoff:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Michael,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; we offer boards with 4 CAN channels for QNX 6.x :
&lt;br&gt;&amp;gt; for both, Basic CAN (SJA1000) and Full CAN (Bosch CC770)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Our offered CAN boards with 4 CAN channels are OEM versions of boards
&lt;br&gt;&amp;gt; from EMS Wuensche. I saw that their PCI-104 boards with 4 channels are
&lt;br&gt;&amp;gt; not online, yet, but they are available! You can check their PCI board
&lt;br&gt;&amp;gt; online with the same design:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ems-wuensche.com/product/datasheet/html/can-pci-plugincard-multi&lt;/a&gt;&lt;br&gt;&amp;gt;ple-channels-cpcpci.html
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Best regards,
&lt;br&gt;&amp;gt; Armin Steinhoff
&lt;br&gt;&amp;gt; www.steinhoff-automation.com/DACHS-CAN_flyer_E.pdf
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;/div&gt;can4linux is available too for the PC104m at least,
&lt;br&gt;the one equipped with up to four sja1000.
&lt;br&gt;If the electric design is the same as for the PCI boards,
&lt;br&gt;the driver can be used for the PCI-104 as well.
&lt;br&gt;&lt;br&gt;&amp;nbsp;Heinz
&lt;br&gt;&lt;a href=&quot;http://www.port.de&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.port.de&lt;/a&gt;&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26318672/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fwd%3A-Quad-PCI-104-PC-104%2B-CAN-card--tp26304826p26318672.html" />
</entry>

</feed>
