<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for QueTwo&#039;s Blog</title>
	<atom:link href="http://quetwo.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://quetwo.com</link>
	<description>thouoghts on telecommunications, programming, education and technology</description>
	<lastBuildDate>Fri, 04 May 2012 05:38:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Connecting your Arduino to AIR using an AIR Native Extension by lluuccaa</title>
		<link>http://quetwo.com/2011/12/01/arduinoconnector-ane/#comment-1468</link>
		<dc:creator><![CDATA[lluuccaa]]></dc:creator>
		<pubDate>Fri, 04 May 2012 05:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://quetwo.com/?p=526#comment-1468</guid>
		<description><![CDATA[Hello, how can I use the library to connect two serial ports?
 I need to connect two Arduino.]]></description>
		<content:encoded><![CDATA[<p>Hello, how can I use the library to connect two serial ports?<br />
 I need to connect two Arduino.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Windows AIR Native Extension with Eclipse – Part 4 by quetwo</title>
		<link>http://quetwo.com/2011/12/10/creating-a-windows-air-native-extension-with-eclipse-part-4/#comment-1435</link>
		<dc:creator><![CDATA[quetwo]]></dc:creator>
		<pubDate>Sat, 14 Apr 2012 12:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://quetwo.com/?p=537#comment-1435</guid>
		<description><![CDATA[Thanks.  I&#039;ve been contemplating putting up a more comprehensive ANE training course about all these.  You are right -- if you need to use anything Windows GDI, WMI, .NET, etc. using MiniGW is a real pain in the rear.  There is quite a bit of documentation from Adobe (including two recordings on Adobe TV) on how to build ANEs with Visual Studio.  I always though it was crazy that they supposedly required VS in order to make them, which is where this video series came from.  I just couldn&#039;t afford VS, nor did I really want it on my machine here at home (I use it at work for some projects and really do like it -- it just makes my machine noticeably slow).]]></description>
		<content:encoded><![CDATA[<p>Thanks.  I&#8217;ve been contemplating putting up a more comprehensive ANE training course about all these.  You are right &#8212; if you need to use anything Windows GDI, WMI, .NET, etc. using MiniGW is a real pain in the rear.  There is quite a bit of documentation from Adobe (including two recordings on Adobe TV) on how to build ANEs with Visual Studio.  I always though it was crazy that they supposedly required VS in order to make them, which is where this video series came from.  I just couldn&#8217;t afford VS, nor did I really want it on my machine here at home (I use it at work for some projects and really do like it &#8212; it just makes my machine noticeably slow).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Windows AIR Native Extension with Eclipse – Part 4 by quetwo</title>
		<link>http://quetwo.com/2011/12/10/creating-a-windows-air-native-extension-with-eclipse-part-4/#comment-1434</link>
		<dc:creator><![CDATA[quetwo]]></dc:creator>
		<pubDate>Sat, 14 Apr 2012 12:55:25 +0000</pubDate>
		<guid isPermaLink="false">http://quetwo.com/?p=537#comment-1434</guid>
		<description><![CDATA[Yeah, if you use C++, the namespace dictionary gets mangled unless you do the &lt;em&gt;extern &quot;C&quot;&lt;/em&gt; in front of those functions.  Unfortunately, it is not the same issue that people have been running across where the DLL fails to load and they get &quot;method connect() not found&quot; or something along those lines... That is an issue with Flash Builder, and the way it is passing the command-line strings to ADL.]]></description>
		<content:encoded><![CDATA[<p>Yeah, if you use C++, the namespace dictionary gets mangled unless you do the <em>extern &#8220;C&#8221;</em> in front of those functions.  Unfortunately, it is not the same issue that people have been running across where the DLL fails to load and they get &#8220;method connect() not found&#8221; or something along those lines&#8230; That is an issue with Flash Builder, and the way it is passing the command-line strings to ADL.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Windows AIR Native Extension with Eclipse – Part 4 by Dmitry</title>
		<link>http://quetwo.com/2011/12/10/creating-a-windows-air-native-extension-with-eclipse-part-4/#comment-1429</link>
		<dc:creator><![CDATA[Dmitry]]></dc:creator>
		<pubDate>Thu, 12 Apr 2012 15:58:32 +0000</pubDate>
		<guid isPermaLink="false">http://quetwo.com/?p=537#comment-1429</guid>
		<description><![CDATA[Btw. I did too got: “The extension context does not have a method with the name xxx” message. But since I was using C++ for my example, I though this maybe has something to do with C/C++ specifics. However ones I added declarations for the functions into header file, i was able to call the functions just fine:

extern &quot;C&quot; __declspec(dllexport) void initializer(void** extData, FREContextInitializer* ctxInitializer, FREContextFinalizer* ctxFinalizer);
extern &quot;C&quot; __declspec(dllexport) void finalizer(void* extData);

extern &quot;C&quot; __declspec(dllexport) FREObject isSupported(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]);
extern &quot;C&quot; __declspec(dllexport) FREObject getTextString(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]);]]></description>
		<content:encoded><![CDATA[<p>Btw. I did too got: “The extension context does not have a method with the name xxx” message. But since I was using C++ for my example, I though this maybe has something to do with C/C++ specifics. However ones I added declarations for the functions into header file, i was able to call the functions just fine:</p>
<p>extern &#8220;C&#8221; __declspec(dllexport) void initializer(void** extData, FREContextInitializer* ctxInitializer, FREContextFinalizer* ctxFinalizer);<br />
extern &#8220;C&#8221; __declspec(dllexport) void finalizer(void* extData);</p>
<p>extern &#8220;C&#8221; __declspec(dllexport) FREObject isSupported(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]);<br />
extern &#8220;C&#8221; __declspec(dllexport) FREObject getTextString(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Windows AIR Native Extension with Eclipse – Part 4 by Dmitry</title>
		<link>http://quetwo.com/2011/12/10/creating-a-windows-air-native-extension-with-eclipse-part-4/#comment-1428</link>
		<dc:creator><![CDATA[Dmitry]]></dc:creator>
		<pubDate>Thu, 12 Apr 2012 15:52:08 +0000</pubDate>
		<guid isPermaLink="false">http://quetwo.com/?p=537#comment-1428</guid>
		<description><![CDATA[This is awesome series of presentations about ANE. I&#039;ve found it very educating and well made with lot of details which I&#039;d personally spend tons of time to go over... So, thank you Nick!
Few points I&#039;d like to mention:
1. Developing with MinGW has it&#039;s own +/-. For the drawbacks I&#039;d mention difficulty using standard Windows API. I&#039;ve found this when  tried using WMI classes and calls in C++ and MinGW obviously doesn&#039;t support any of this, so...
2. I&#039;d suggest for the Author to mention there is a &quot;CDT Visual C++ Support&quot; plugin for Eclipse which integrates Visual Studio (Express) into the CDT. It installs support for VS includes and Microsoft SDK (if it&#039;s presented).
3. I found that developing an extension with C++ actually requires declaring your functions in extension&#039;s Application.h header file. I think this is not the case if you use C. But with C++ I wasn&#039;t able to call my functions if they are not declared in the header file.

Keep it up Nick!
Dmitry.]]></description>
		<content:encoded><![CDATA[<p>This is awesome series of presentations about ANE. I&#8217;ve found it very educating and well made with lot of details which I&#8217;d personally spend tons of time to go over&#8230; So, thank you Nick!<br />
Few points I&#8217;d like to mention:<br />
1. Developing with MinGW has it&#8217;s own +/-. For the drawbacks I&#8217;d mention difficulty using standard Windows API. I&#8217;ve found this when  tried using WMI classes and calls in C++ and MinGW obviously doesn&#8217;t support any of this, so&#8230;<br />
2. I&#8217;d suggest for the Author to mention there is a &#8220;CDT Visual C++ Support&#8221; plugin for Eclipse which integrates Visual Studio (Express) into the CDT. It installs support for VS includes and Microsoft SDK (if it&#8217;s presented).<br />
3. I found that developing an extension with C++ actually requires declaring your functions in extension&#8217;s Application.h header file. I think this is not the case if you use C. But with C++ I wasn&#8217;t able to call my functions if they are not declared in the header file.</p>
<p>Keep it up Nick!<br />
Dmitry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connecting your Arduino to AIR using an AIR Native Extension by chris</title>
		<link>http://quetwo.com/2011/12/01/arduinoconnector-ane/#comment-1427</link>
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Thu, 12 Apr 2012 04:33:46 +0000</pubDate>
		<guid isPermaLink="false">http://quetwo.com/?p=526#comment-1427</guid>
		<description><![CDATA[Sorry, I meant the socketData stops firing the event listener.  Just to clarify.]]></description>
		<content:encoded><![CDATA[<p>Sorry, I meant the socketData stops firing the event listener.  Just to clarify.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connecting your Arduino to AIR using an AIR Native Extension by chris</title>
		<link>http://quetwo.com/2011/12/01/arduinoconnector-ane/#comment-1426</link>
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Thu, 12 Apr 2012 04:32:18 +0000</pubDate>
		<guid isPermaLink="false">http://quetwo.com/?p=526#comment-1426</guid>
		<description><![CDATA[Thanks!  But no good.with 0022 either.  It is able to read the analog input of a Force Sensitive Resistor for about a second on pin 0 but then it dies.  If you think this is a valid issue, I can post to your google code instead of blowing up your blog post :)]]></description>
		<content:encoded><![CDATA[<p>Thanks!  But no good.with 0022 either.  It is able to read the analog input of a Force Sensitive Resistor for about a second on pin 0 but then it dies.  If you think this is a valid issue, I can post to your google code instead of blowing up your blog post <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connecting your Arduino to AIR using an AIR Native Extension by quetwo</title>
		<link>http://quetwo.com/2011/12/01/arduinoconnector-ane/#comment-1425</link>
		<dc:creator><![CDATA[quetwo]]></dc:creator>
		<pubDate>Thu, 12 Apr 2012 03:17:52 +0000</pubDate>
		<guid isPermaLink="false">http://quetwo.com/?p=526#comment-1425</guid>
		<description><![CDATA[I&#039;ve had mixed results with the new Arduino 1.0  IDE and associated firmata.   I do most of my testing with Arduino Studio 0022 when I&#039;m using my older Duemilanove.  http://arduino.cc/en/Main/Software]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve had mixed results with the new Arduino 1.0  IDE and associated firmata.   I do most of my testing with Arduino Studio 0022 when I&#8217;m using my older Duemilanove.  <a href="http://arduino.cc/en/Main/Software" rel="nofollow">http://arduino.cc/en/Main/Software</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connecting your Arduino to AIR using an AIR Native Extension by chris</title>
		<link>http://quetwo.com/2011/12/01/arduinoconnector-ane/#comment-1424</link>
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Thu, 12 Apr 2012 02:34:48 +0000</pubDate>
		<guid isPermaLink="false">http://quetwo.com/?p=526#comment-1424</guid>
		<description><![CDATA[Seems like I&#039;ve run into a road block.  Seems the only version of firmata that will actually let me get data is SimpleAnalogFirmata. But it crashes after a few seconds.  Can&#039;t get any of the other ones in the examples that come with Arduino 1.0 to work.  Is there a version you know of that will let me get Analog/Digital/IC2 data?  If there is no real stable version, then is there an example project of ArduinoConnector code minus the as3glue?  Thanks again for making an awesome library and all your help.]]></description>
		<content:encoded><![CDATA[<p>Seems like I&#8217;ve run into a road block.  Seems the only version of firmata that will actually let me get data is SimpleAnalogFirmata. But it crashes after a few seconds.  Can&#8217;t get any of the other ones in the examples that come with Arduino 1.0 to work.  Is there a version you know of that will let me get Analog/Digital/IC2 data?  If there is no real stable version, then is there an example project of ArduinoConnector code minus the as3glue?  Thanks again for making an awesome library and all your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Windows AIR Native Extension with Eclipse &#8211; Part 1 by Dmitry</title>
		<link>http://quetwo.com/2011/10/31/creating-an-windows-air-native-extension-with-eclipse-part-1/#comment-1405</link>
		<dc:creator><![CDATA[Dmitry]]></dc:creator>
		<pubDate>Thu, 05 Apr 2012 13:57:52 +0000</pubDate>
		<guid isPermaLink="false">http://quetwo.com/?p=504#comment-1405</guid>
		<description><![CDATA[I&#039;m using MinGW (set up properly in FB4.6 standalone IDE) + CDT as you prescribed.]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m using MinGW (set up properly in FB4.6 standalone IDE) + CDT as you prescribed.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
