<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Automon</title>
	<atom:link href="http://automon.donaloconnor.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://automon.donaloconnor.net</link>
	<description>Automon - My FYP Blog - Car Diagnostics, ARM, ARM9, QT Embedded, ELM327, SBC, TS-TPC-7390 TS-7390 &#124; donaloconnor@gmail.com &#124; I&#039;m available for contract work!</description>
	<lastBuildDate>Mon, 08 Mar 2010 10:12:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
	<item>
		<title>Comment on QT and QExtSerialPort by Mark Mikaelsen</title>
		<link>http://automon.donaloconnor.net/qt-and-qextserialport/34/comment-page-1/#comment-2946</link>
		<dc:creator>Mark Mikaelsen</dc:creator>
		<pubDate>Mon, 08 Mar 2010 10:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=34#comment-2946</guid>
		<description>I can see it didnt get the &quot;HEADERS += qextserialport.h&quot; in my previous post. It is included.</description>
		<content:encoded><![CDATA[<p>I can see it didnt get the &#8220;HEADERS += qextserialport.h&#8221; in my previous post. It is included.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QT and QExtSerialPort by Mark Mikaelsen</title>
		<link>http://automon.donaloconnor.net/qt-and-qextserialport/34/comment-page-1/#comment-2944</link>
		<dc:creator>Mark Mikaelsen</dc:creator>
		<pubDate>Mon, 08 Mar 2010 10:09:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=34#comment-2944</guid>
		<description>Hi
Im very new with Qt so appologies if this is a newbie question :)

I tried out implementing the &quot;test.pro&quot; (in my case called SerialTest.pro) with your code and the newest version (feb 7 2010) of QextSerialPort from http://code.google.com/p/qextserialport however when i compile the project i get the error 
&quot;c:\QtTutorial1\SerialTest\SerialTest\SerialTest.pro:14: Parse Error (&#039;QWT_DLL QT_DLL&#039;)&quot;

First off, the QextSerialPort lib compiled just fine and I have placed the lib and dll files correctly, so no problem there.

my main file looks like this:

INCLUDEPATH += C:/QtTutorial1/SerialTest/SerialTest
QMAKE_LIBDIR += C:/QtTutorial1/SerialTest/SerialTest/build

LIBS += -lqextserialport

unix:DEFINES = _TTY_POSIX_
win32:DEFINES = _TTY_WIN_ \

QWT_DLL \
QT_DLL

QT -= gui
TARGET = SerialTest
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp
HEADERS += 

Hope you can spot the error.</description>
		<content:encoded><![CDATA[<p>Hi<br />
Im very new with Qt so appologies if this is a newbie question <img src='http://automon.donaloconnor.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I tried out implementing the &#8220;test.pro&#8221; (in my case called SerialTest.pro) with your code and the newest version (feb 7 2010) of QextSerialPort from <a href="http://code.google.com/p/qextserialport">http://code.google.com/p/qextserialport</a> however when i compile the project i get the error<br />
&#8220;c:\QtTutorial1\SerialTest\SerialTest\SerialTest.pro:14: Parse Error (&#8216;QWT_DLL QT_DLL&#8217;)&#8221;</p>
<p>First off, the QextSerialPort lib compiled just fine and I have placed the lib and dll files correctly, so no problem there.</p>
<p>my main file looks like this:</p>
<p>INCLUDEPATH += C:/QtTutorial1/SerialTest/SerialTest<br />
QMAKE_LIBDIR += C:/QtTutorial1/SerialTest/SerialTest/build</p>
<p>LIBS += -lqextserialport</p>
<p>unix:DEFINES = _TTY_POSIX_<br />
win32:DEFINES = _TTY_WIN_ \</p>
<p>QWT_DLL \<br />
QT_DLL</p>
<p>QT -= gui<br />
TARGET = SerialTest<br />
CONFIG += console<br />
CONFIG -= app_bundle<br />
TEMPLATE = app<br />
SOURCES += main.cpp<br />
HEADERS += </p>
<p>Hope you can spot the error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QT and QExtSerialPort by Donal</title>
		<link>http://automon.donaloconnor.net/qt-and-qextserialport/34/comment-page-1/#comment-2519</link>
		<dc:creator>Donal</dc:creator>
		<pubDate>Fri, 15 Jan 2010 14:31:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=34#comment-2519</guid>
		<description>Hi,

Sounds like it cannot find QextSerial port.

Have you something like this in your QMake pro file:

INCLUDEPATH += path/to/qextserialport/includedir/
QMAKE_LIBDIR += path/to/qextserialport/build
LIBS += -Lpath/to/qextserialport/build/ \
    -lqextserialport

Then in your file:

#include &quot;qextserialport.h&quot;

Make sure the .a file is in the build output after you&#039;ve built the QExtSerial port library.

Hope that helps</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Sounds like it cannot find QextSerial port.</p>
<p>Have you something like this in your QMake pro file:</p>
<p>INCLUDEPATH += path/to/qextserialport/includedir/<br />
QMAKE_LIBDIR += path/to/qextserialport/build<br />
LIBS += -Lpath/to/qextserialport/build/ \<br />
    -lqextserialport</p>
<p>Then in your file:</p>
<p>#include &#8220;qextserialport.h&#8221;</p>
<p>Make sure the .a file is in the build output after you&#8217;ve built the QExtSerial port library.</p>
<p>Hope that helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QT and QExtSerialPort by Dmitriy</title>
		<link>http://automon.donaloconnor.net/qt-and-qextserialport/34/comment-page-1/#comment-2518</link>
		<dc:creator>Dmitriy</dc:creator>
		<pubDate>Fri, 15 Jan 2010 14:23:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=34#comment-2518</guid>
		<description>the show of problem starts here:
port = new QextSerialPort(&quot;/dev/ttyS0&quot;);

error message:
/home/dmitriys/QTprojects/VMS_linux/Linux_VMS_App/vms.cpp:46: error: invalid use of incomplete type ‘struct QextSerialPort’</description>
		<content:encoded><![CDATA[<p>the show of problem starts here:<br />
port = new QextSerialPort(&#8220;/dev/ttyS0&#8243;);</p>
<p>error message:<br />
/home/dmitriys/QTprojects/VMS_linux/Linux_VMS_App/vms.cpp:46: error: invalid use of incomplete type ‘struct QextSerialPort’</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QT and QExtSerialPort by Donal</title>
		<link>http://automon.donaloconnor.net/qt-and-qextserialport/34/comment-page-1/#comment-2516</link>
		<dc:creator>Donal</dc:creator>
		<pubDate>Fri, 15 Jan 2010 13:36:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=34#comment-2516</guid>
		<description>Hey There,

I got this working on Linux using /dev/ttyS0 no problem. What problem are you having? I think it compiled straight out of the box after downloading Qextserialport.

Thanks,
Donal</description>
		<content:encoded><![CDATA[<p>Hey There,</p>
<p>I got this working on Linux using /dev/ttyS0 no problem. What problem are you having? I think it compiled straight out of the box after downloading Qextserialport.</p>
<p>Thanks,<br />
Donal</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QT and QExtSerialPort by Dmitriy</title>
		<link>http://automon.donaloconnor.net/qt-and-qextserialport/34/comment-page-1/#comment-2515</link>
		<dc:creator>Dmitriy</dc:creator>
		<pubDate>Fri, 15 Jan 2010 13:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=34#comment-2515</guid>
		<description>Appreciated for this article. I started to work with QT creator not to long ago, to develop GUI test application for my embedded devices while communicating trough the serial port.
The application work fine using QextSerialPort under windows os. I am looking for example that would compile and work under Linux (Slackware) using serial port (/dev/ttyS0).
including the QextSerialport.h file as in windows will not compile under Linux platform.
Any suggestions would be appreciated.
Thank you in advance.</description>
		<content:encoded><![CDATA[<p>Appreciated for this article. I started to work with QT creator not to long ago, to develop GUI test application for my embedded devices while communicating trough the serial port.<br />
The application work fine using QextSerialPort under windows os. I am looking for example that would compile and work under Linux (Slackware) using serial port (/dev/ttyS0).<br />
including the QextSerialport.h file as in windows will not compile under Linux platform.<br />
Any suggestions would be appreciated.<br />
Thank you in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Not Finished Yet! &#8211; Moving to EABI by Donal</title>
		<link>http://automon.donaloconnor.net/not-finished-yet-moving-to-eabi/326/comment-page-1/#comment-2144</link>
		<dc:creator>Donal</dc:creator>
		<pubDate>Sun, 01 Nov 2009 22:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://automon.donaloconnor.net/?p=326#comment-2144</guid>
		<description>Brett, how&#039;s it going.

I&#039;d be very interested talking to you about something like that as I want to get into the car electronics. Unfort I&#039;m gone doing a PhD in localisation now so time is scarce but if you have a good proposal then I&#039;d be interested hearing.

I wanted to continue automon as a DIY project for people. Maybe sell a Kit or something.

Please email me on donaloconnor at gmail.com and we can discuss further.</description>
		<content:encoded><![CDATA[<p>Brett, how&#8217;s it going.</p>
<p>I&#8217;d be very interested talking to you about something like that as I want to get into the car electronics. Unfort I&#8217;m gone doing a PhD in localisation now so time is scarce but if you have a good proposal then I&#8217;d be interested hearing.</p>
<p>I wanted to continue automon as a DIY project for people. Maybe sell a Kit or something.</p>
<p>Please email me on donaloconnor at gmail.com and we can discuss further.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Not Finished Yet! &#8211; Moving to EABI by BrettB</title>
		<link>http://automon.donaloconnor.net/not-finished-yet-moving-to-eabi/326/comment-page-1/#comment-2141</link>
		<dc:creator>BrettB</dc:creator>
		<pubDate>Sun, 01 Nov 2009 21:51:42 +0000</pubDate>
		<guid isPermaLink="false">http://automon.donaloconnor.net/?p=326#comment-2141</guid>
		<description>Donal,
Boy am I glad I found your blog.  I arrived at the same solutions for a very similar project, specifically, I&#039;m going to use the TS-7390 and Qt Embedded to build a dashboard for an Electric car.  I just received my board last week and I&#039;ve been banging my head against the EABI/OABI issue.  I&#039;d be very interested in helping with your project if only to figure out some stuff for mine.  I don&#039;t know what your plans are for automon (really cool, by the way) but maybe you would like to extend it for the Do-It-Yourself Electric car space?  If so, I would love to talk to you about it.

Thanks,
Brett.</description>
		<content:encoded><![CDATA[<p>Donal,<br />
Boy am I glad I found your blog.  I arrived at the same solutions for a very similar project, specifically, I&#8217;m going to use the TS-7390 and Qt Embedded to build a dashboard for an Electric car.  I just received my board last week and I&#8217;ve been banging my head against the EABI/OABI issue.  I&#8217;d be very interested in helping with your project if only to figure out some stuff for mine.  I don&#8217;t know what your plans are for automon (really cool, by the way) but maybe you would like to extend it for the Do-It-Yourself Electric car space?  If so, I would love to talk to you about it.</p>
<p>Thanks,<br />
Brett.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cross Compiled QT Embedded &#8211; Step by Step by kirk</title>
		<link>http://automon.donaloconnor.net/cross-compiled-qt-embedded-step-by-step/74/comment-page-1/#comment-1808</link>
		<dc:creator>kirk</dc:creator>
		<pubDate>Thu, 08 Oct 2009 18:28:52 +0000</pubDate>
		<guid isPermaLink="false">http://automon.killarneyonline.eu/?p=74#comment-1808</guid>
		<description>thank for your quick reply as u know it is really a pain to stuck in the middle of it. So let me cut the words short

1. As I said my final target is the arm board and I used qt-4.5.2(qtsdk-2009.03) to develop..am i using the wrong version since my idea is to develop with 4.5 first and then cross compile to qtopia-core-4.3.3-arm..

2. why there is an error as I mentioned last message that when compiling qextserialport in 4.3.3 since it worked fine in qt 4.5.

Regards,
Kirk</description>
		<content:encoded><![CDATA[<p>thank for your quick reply as u know it is really a pain to stuck in the middle of it. So let me cut the words short</p>
<p>1. As I said my final target is the arm board and I used qt-4.5.2(qtsdk-2009.03) to develop..am i using the wrong version since my idea is to develop with 4.5 first and then cross compile to qtopia-core-4.3.3-arm..</p>
<p>2. why there is an error as I mentioned last message that when compiling qextserialport in 4.3.3 since it worked fine in qt 4.5.</p>
<p>Regards,<br />
Kirk</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cross Compiled QT Embedded &#8211; Step by Step by Donal</title>
		<link>http://automon.donaloconnor.net/cross-compiled-qt-embedded-step-by-step/74/comment-page-1/#comment-1805</link>
		<dc:creator>Donal</dc:creator>
		<pubDate>Thu, 08 Oct 2009 11:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://automon.killarneyonline.eu/?p=74#comment-1805</guid>
		<description>Don&#039;t use Qtopia, that&#039;s for phones and discont presently as far as I know. Everything is qt embedded now.

You must download the QT embedded source and build it with the GCC 3 compiler. It&#039;s not too old, it should work.

Time is very limited for me at moment but if you have specific problems let me know and I can try help.</description>
		<content:encoded><![CDATA[<p>Don&#8217;t use Qtopia, that&#8217;s for phones and discont presently as far as I know. Everything is qt embedded now.</p>
<p>You must download the QT embedded source and build it with the GCC 3 compiler. It&#8217;s not too old, it should work.</p>
<p>Time is very limited for me at moment but if you have specific problems let me know and I can try help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cross Compiled QT Embedded &#8211; Step by Step by kirk</title>
		<link>http://automon.donaloconnor.net/cross-compiled-qt-embedded-step-by-step/74/comment-page-1/#comment-1803</link>
		<dc:creator>kirk</dc:creator>
		<pubDate>Thu, 08 Oct 2009 10:27:20 +0000</pubDate>
		<guid isPermaLink="false">http://automon.killarneyonline.eu/?p=74#comment-1803</guid>
		<description>Hello Donal,


        I have exactly same feeling with you of the whole process. I have many questions to ask you and really hope you can help since your development progress was very similiar to mine. I used qt 4.5.2 to develop my app. with qextserialport class in linux pc and now really wanted to move it to arm-linux.

1. Which qt-embedded version you suggest I used? or qtopia-core version?
2. I already installed cross compiler 3.3.6-glibc-2.3.2. Is it too old for my app.?
3. now when I compile the qextserialport class with qtopia-4.3.3 qmake, error came out ...&quot;build/obj/qextserialbase.o: could not read symbols: File in wrong format&quot; .do u have any idea?
4. If i can talk to you on gmail, that would be good.


Regards,
Kirk</description>
		<content:encoded><![CDATA[<p>Hello Donal,</p>
<p>        I have exactly same feeling with you of the whole process. I have many questions to ask you and really hope you can help since your development progress was very similiar to mine. I used qt 4.5.2 to develop my app. with qextserialport class in linux pc and now really wanted to move it to arm-linux.</p>
<p>1. Which qt-embedded version you suggest I used? or qtopia-core version?<br />
2. I already installed cross compiler 3.3.6-glibc-2.3.2. Is it too old for my app.?<br />
3. now when I compile the qextserialport class with qtopia-4.3.3 qmake, error came out &#8230;&#8221;build/obj/qextserialbase.o: could not read symbols: File in wrong format&#8221; .do u have any idea?<br />
4. If i can talk to you on gmail, that would be good.</p>
<p>Regards,<br />
Kirk</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In search of an ECU emulator by Qasim</title>
		<link>http://automon.donaloconnor.net/in-search-of-a-ecu-emulator/25/comment-page-1/#comment-1674</link>
		<dc:creator>Qasim</dc:creator>
		<pubDate>Tue, 29 Sep 2009 02:22:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=25#comment-1674</guid>
		<description>hi thanx for ur response admin
actually i am working for asian cars like honda toyota and hyundai suzuki etc
i need a simulator for can, iso9141-2 etc
ya i checked out &quot;EOBD &amp; OBDII ECU simulators&quot;
at http://www.ozenelektronik.com/ 
i m from pakistan can u please tell me the price including the shipment charges

thanx...</description>
		<content:encoded><![CDATA[<p>hi thanx for ur response admin<br />
actually i am working for asian cars like honda toyota and hyundai suzuki etc<br />
i need a simulator for can, iso9141-2 etc<br />
ya i checked out &#8220;EOBD &amp; OBDII ECU simulators&#8221;<br />
at <a href="http://www.ozenelektronik.com/">http://www.ozenelektronik.com/</a><br />
i m from pakistan can u please tell me the price including the shipment charges</p>
<p>thanx&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Next steps, building Automon GUI application by Donal</title>
		<link>http://automon.donaloconnor.net/next-steps-building-automon-gui-application/222/comment-page-1/#comment-1621</link>
		<dc:creator>Donal</dc:creator>
		<pubDate>Fri, 25 Sep 2009 06:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://automon.killarneyonline.eu/?p=222#comment-1621</guid>
		<description>Hi, the above is just an image created by photoshop.</description>
		<content:encoded><![CDATA[<p>Hi, the above is just an image created by photoshop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In search of an ECU emulator by Donal</title>
		<link>http://automon.donaloconnor.net/in-search-of-a-ecu-emulator/25/comment-page-1/#comment-1620</link>
		<dc:creator>Donal</dc:creator>
		<pubDate>Fri, 25 Sep 2009 06:57:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=25#comment-1620</guid>
		<description>Hi,

These boards take a standard DC input. I baught a transformer locally and that done fine.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>These boards take a standard DC input. I baught a transformer locally and that done fine.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In search of an ECU emulator by admin@sinautoscan.com</title>
		<link>http://automon.donaloconnor.net/in-search-of-a-ecu-emulator/25/comment-page-1/#comment-1614</link>
		<dc:creator>admin@sinautoscan.com</dc:creator>
		<pubDate>Fri, 25 Sep 2009 02:38:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=25#comment-1614</guid>
		<description>Did you consider my offer?</description>
		<content:encoded><![CDATA[<p>Did you consider my offer?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In search of an ECU emulator by admin@sinautoscan.com</title>
		<link>http://automon.donaloconnor.net/in-search-of-a-ecu-emulator/25/comment-page-1/#comment-1599</link>
		<dc:creator>admin@sinautoscan.com</dc:creator>
		<pubDate>Thu, 24 Sep 2009 05:16:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=25#comment-1599</guid>
		<description>A Real-Time Engine Simulator for Ecu Development and Testing.

The simulators from http://www.ozenelektronik.com/ come configure for Europe so the power supply needs some modification i can provide you one for a good price.

http://sinautoscan.com/page12.php</description>
		<content:encoded><![CDATA[<p>A Real-Time Engine Simulator for Ecu Development and Testing.</p>
<p>The simulators from <a href="http://www.ozenelektronik.com/">http://www.ozenelektronik.com/</a> come configure for Europe so the power supply needs some modification i can provide you one for a good price.</p>
<p><a href="http://sinautoscan.com/page12.php">http://sinautoscan.com/page12.php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Next steps, building Automon GUI application by Joao Weinholtz</title>
		<link>http://automon.donaloconnor.net/next-steps-building-automon-gui-application/222/comment-page-1/#comment-1492</link>
		<dc:creator>Joao Weinholtz</dc:creator>
		<pubDate>Thu, 17 Sep 2009 09:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://automon.killarneyonline.eu/?p=222#comment-1492</guid>
		<description>Greetings, i&#039;m also starting to develop a GUI, but first i&#039;ll need to present a mockup. Would you be so kind to tell me which software you used to present the above GUI draft?

Thx</description>
		<content:encoded><![CDATA[<p>Greetings, i&#8217;m also starting to develop a GUI, but first i&#8217;ll need to present a mockup. Would you be so kind to tell me which software you used to present the above GUI draft?</p>
<p>Thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Not Finished Yet! &#8211; Moving to EABI by patrick</title>
		<link>http://automon.donaloconnor.net/not-finished-yet-moving-to-eabi/326/comment-page-1/#comment-1477</link>
		<dc:creator>patrick</dc:creator>
		<pubDate>Wed, 16 Sep 2009 08:04:47 +0000</pubDate>
		<guid isPermaLink="false">http://automon.donaloconnor.net/?p=326#comment-1477</guid>
		<description>Great work. My application is also working great. I am also investigating media (mostly sound). All the best.

Patrick</description>
		<content:encoded><![CDATA[<p>Great work. My application is also working great. I am also investigating media (mostly sound). All the best.</p>
<p>Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QT and QExtSerialPort by Vinay M</title>
		<link>http://automon.donaloconnor.net/qt-and-qextserialport/34/comment-page-1/#comment-1473</link>
		<dc:creator>Vinay M</dc:creator>
		<pubDate>Wed, 16 Sep 2009 04:15:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=34#comment-1473</guid>
		<description>I&#039;m new to Qt, Now I want to build a GUI for serial port communication and use the serial PORT which is available on my board. Plz can you suggest me, How to communicate with serial port&gt;........</description>
		<content:encoded><![CDATA[<p>I&#8217;m new to Qt, Now I want to build a GUI for serial port communication and use the serial PORT which is available on my board. Plz can you suggest me, How to communicate with serial port&gt;&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In search of an ECU emulator by Qasim</title>
		<link>http://automon.donaloconnor.net/in-search-of-a-ecu-emulator/25/comment-page-1/#comment-1387</link>
		<dc:creator>Qasim</dc:creator>
		<pubDate>Sun, 13 Sep 2009 06:16:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=25#comment-1387</guid>
		<description>oh thanx for your reply....well i m actually developing a kit for obd2
and my aim to use the elm327 with the touch screen interface using atmegs32 controller not the embedded programming
can u please suggest me a development environment on which i can work easily and can get a help either

like there are some aurdino etc</description>
		<content:encoded><![CDATA[<p>oh thanx for your reply&#8230;.well i m actually developing a kit for obd2<br />
and my aim to use the elm327 with the touch screen interface using atmegs32 controller not the embedded programming<br />
can u please suggest me a development environment on which i can work easily and can get a help either</p>
<p>like there are some aurdino etc</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In search of an ECU emulator by Donal</title>
		<link>http://automon.donaloconnor.net/in-search-of-a-ecu-emulator/25/comment-page-1/#comment-1383</link>
		<dc:creator>Donal</dc:creator>
		<pubDate>Sat, 12 Sep 2009 11:10:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=25#comment-1383</guid>
		<description>I never bothered with the Ecu emulator. It doesn&#039;t work very well. You better off getting a hardware based simulator for about 100 euro and use that as you can vary speed/MAF/coolant temp etc using onboard knobs and you can have a MIL and diagnostic codes on board.

The ECU Emu software requires a null modem cable between a serial port and another serial port of another PC or loop around into another serial port on same computer. It never worked very good for me anyways so I gave up wasting time with it.</description>
		<content:encoded><![CDATA[<p>I never bothered with the Ecu emulator. It doesn&#8217;t work very well. You better off getting a hardware based simulator for about 100 euro and use that as you can vary speed/MAF/coolant temp etc using onboard knobs and you can have a MIL and diagnostic codes on board.</p>
<p>The ECU Emu software requires a null modem cable between a serial port and another serial port of another PC or loop around into another serial port on same computer. It never worked very good for me anyways so I gave up wasting time with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In search of an ECU emulator by Qasim</title>
		<link>http://automon.donaloconnor.net/in-search-of-a-ecu-emulator/25/comment-page-1/#comment-1378</link>
		<dc:creator>Qasim</dc:creator>
		<pubDate>Sat, 12 Sep 2009 06:05:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=25#comment-1378</guid>
		<description>hi , i am actually not getting u ..
the software i.e ecu emulator 
does this software act as the virtual ecu of the car?

or its sumthing else??

actually i am doing the same project

n i need a software that can act as a virtual ecu of the car

cause i cant test my code with car again n again

plese help me</description>
		<content:encoded><![CDATA[<p>hi , i am actually not getting u ..<br />
the software i.e ecu emulator<br />
does this software act as the virtual ecu of the car?</p>
<p>or its sumthing else??</p>
<p>actually i am doing the same project</p>
<p>n i need a software that can act as a virtual ecu of the car</p>
<p>cause i cant test my code with car again n again</p>
<p>plese help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In search of an ECU emulator by Donal</title>
		<link>http://automon.donaloconnor.net/in-search-of-a-ecu-emulator/25/comment-page-1/#comment-1371</link>
		<dc:creator>Donal</dc:creator>
		<pubDate>Fri, 11 Sep 2009 10:26:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=25#comment-1371</guid>
		<description>Hi,

I never did. I used a ECU simulator from these guys: http://www.ozenelektronik.com/ - and then I used the ElmScan hooked directly up to the car when I did proper testing.testing</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I never did. I used a ECU simulator from these guys: <a href="http://www.ozenelektronik.com/">http://www.ozenelektronik.com/</a> &#8211; and then I used the ElmScan hooked directly up to the car when I did proper testing.testing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In search of an ECU emulator by Qasim</title>
		<link>http://automon.donaloconnor.net/in-search-of-a-ecu-emulator/25/comment-page-1/#comment-1364</link>
		<dc:creator>Qasim</dc:creator>
		<pubDate>Fri, 11 Sep 2009 03:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=25#comment-1364</guid>
		<description>hi, can u please tell me how did u connected the elm327 circuit with laptop
i mean it needs the 16v from the car battery how did u managed tht please help ...</description>
		<content:encoded><![CDATA[<p>hi, can u please tell me how did u connected the elm327 circuit with laptop<br />
i mean it needs the 16v from the car battery how did u managed tht please help &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing TSLib and Calibrating it by Vinay</title>
		<link>http://automon.donaloconnor.net/installing-tslib-and-calibrating-it/83/comment-page-1/#comment-1359</link>
		<dc:creator>Vinay</dc:creator>
		<pubDate>Thu, 10 Sep 2009 08:07:14 +0000</pubDate>
		<guid isPermaLink="false">http://automon.killarneyonline.eu/?p=83#comment-1359</guid>
		<description>Im Working ARM board i.mx31. i have ts_calibrate on board itself. But now i want to use this touch screen for my GUI built by Qt embedded, When execute ts_calibrate it shows window with small buttons DRAG and DRAW. when touch screen it shows the co ordinates on PC of my TS.but when i run my application cursor wont move at all. Cursor will be on left top. Im not able to pass input from this TS.i ave downloaded TSLIB-1.0 lib and compiled acc ARM compiler. Now im not able to activate TouchScreen</description>
		<content:encoded><![CDATA[<p>Im Working ARM board i.mx31. i have ts_calibrate on board itself. But now i want to use this touch screen for my GUI built by Qt embedded, When execute ts_calibrate it shows window with small buttons DRAG and DRAW. when touch screen it shows the co ordinates on PC of my TS.but when i run my application cursor wont move at all. Cursor will be on left top. Im not able to pass input from this TS.i ave downloaded TSLIB-1.0 lib and compiled acc ARM compiler. Now im not able to activate TouchScreen</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Final Year Project Report Complete by wow gold</title>
		<link>http://automon.donaloconnor.net/final-year-project-report-complete/315/comment-page-1/#comment-838</link>
		<dc:creator>wow gold</dc:creator>
		<pubDate>Mon, 20 Jul 2009 08:38:26 +0000</pubDate>
		<guid isPermaLink="false">http://automon.donaloconnor.net/?p=315#comment-838</guid>
		<description>This is a great post and makes me think of where I can fit in. I do a little bit of everything mentioned here and I guess I have to find my competitive advantage.</description>
		<content:encoded><![CDATA[<p>This is a great post and makes me think of where I can fit in. I do a little bit of everything mentioned here and I guess I have to find my competitive advantage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In search of an ECU emulator by Donal</title>
		<link>http://automon.donaloconnor.net/in-search-of-a-ecu-emulator/25/comment-page-1/#comment-833</link>
		<dc:creator>Donal</dc:creator>
		<pubDate>Sun, 19 Jul 2009 20:33:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=25#comment-833</guid>
		<description>Hi Mike,

Thanks very much. However I did not find the software very useful and decided to order a proper ECU simulator from www.ozenelektronik.com - Well worth the money!

Maybe it might suit you too.

I&#039;ll read more into your blog soon. It looks very interesting.

Cheers</description>
		<content:encoded><![CDATA[<p>Hi Mike,</p>
<p>Thanks very much. However I did not find the software very useful and decided to order a proper ECU simulator from <a href="http://www.ozenelektronik.com">http://www.ozenelektronik.com</a> &#8211; Well worth the money!</p>
<p>Maybe it might suit you too.</p>
<p>I&#8217;ll read more into your blog soon. It looks very interesting.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In search of an ECU emulator by Mike</title>
		<link>http://automon.donaloconnor.net/in-search-of-a-ecu-emulator/25/comment-page-1/#comment-832</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sun, 19 Jul 2009 20:28:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.killarneyonline.eu/automon/?p=25#comment-832</guid>
		<description>Dropping in to say thanks! I&#039;ve been looking for something similar, I ran across the emulator but you gave a good explanation (how to, if you will) on setting it up.

I had the same predicament, standalone ECU or emulator. Now with this software and your nullmodem solution I&#039;ll be able to start with the emulator and maybe move to the ECU later.

Check out my site for my project!</description>
		<content:encoded><![CDATA[<p>Dropping in to say thanks! I&#8217;ve been looking for something similar, I ran across the emulator but you gave a good explanation (how to, if you will) on setting it up.</p>
<p>I had the same predicament, standalone ECU or emulator. Now with this software and your nullmodem solution I&#8217;ll be able to start with the emulator and maybe move to the ECU later.</p>
<p>Check out my site for my project!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automon mentioned on Scantool.net by Donal</title>
		<link>http://automon.donaloconnor.net/automon-mentioned-on-scantoolnet/320/comment-page-1/#comment-796</link>
		<dc:creator>Donal</dc:creator>
		<pubDate>Fri, 17 Jul 2009 08:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://automon.donaloconnor.net/?p=320#comment-796</guid>
		<description>Hi Patrick,

That&#039;s good news. Strange alright, but I did have the same problem myself. Think I just resorted to this solution as well as I had it backed up :)

Enjoy.

Donal</description>
		<content:encoded><![CDATA[<p>Hi Patrick,</p>
<p>That&#8217;s good news. Strange alright, but I did have the same problem myself. Think I just resorted to this solution as well as I had it backed up <img src='http://automon.donaloconnor.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Enjoy.</p>
<p>Donal</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automon mentioned on Scantool.net by patrick</title>
		<link>http://automon.donaloconnor.net/automon-mentioned-on-scantoolnet/320/comment-page-1/#comment-794</link>
		<dc:creator>patrick</dc:creator>
		<pubDate>Fri, 17 Jul 2009 08:53:35 +0000</pubDate>
		<guid isPermaLink="false">http://automon.donaloconnor.net/?p=320#comment-794</guid>
		<description>Hi Donal,

Thank you very much. Your library worked very well.
I just wonder why my compilation didn&#039;t work. maybe it was from a different version. 

Regards,

Patrick</description>
		<content:encoded><![CDATA[<p>Hi Donal,</p>
<p>Thank you very much. Your library worked very well.<br />
I just wonder why my compilation didn&#8217;t work. maybe it was from a different version. </p>
<p>Regards,</p>
<p>Patrick</p>
]]></content:encoded>
	</item>
</channel>
</rss>
