<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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">
	<channel>
		<title>Jee Labs Talk &#187; Tag: arduino - Recent Posts</title>
		<link>http://talk.jeelabs.net/tags/arduino</link>
		<description>Discussion about Jee Labs projects</description>
		<language>en-US</language>
		<pubDate>Sat, 11 Sep 2010 02:57:06 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://talk.jeelabs.net/search.php</link>
		</textInput>
		<atom:link href="http://talk.jeelabs.net/rss/tags/arduino" rel="self" type="application/rss+xml" />

		<item>
			<title>andras on "Arduino 0019"</title>
			<link>http://talk.jeelabs.net/topic/483/page/2#post-2707</link>
			<pubDate>Mon, 06 Sep 2010 22:02:31 +0000</pubDate>
			<dc:creator>andras</dc:creator>
			<guid isPermaLink="false">2707@http://talk.jeelabs.net/</guid>
			<description>&#60;p&#62;I use 0018 on Ubuntu 10.04. The /tmp/buildxxxxxx.tmp is cleaned up here only after the IDE is closed.&#60;/p&#62;
</description>
		</item>
		<item>
			<title>raalst on "Arduino 0019"</title>
			<link>http://talk.jeelabs.net/topic/483/page/2#post-2706</link>
			<pubDate>Mon, 06 Sep 2010 20:51:52 +0000</pubDate>
			<dc:creator>raalst</dc:creator>
			<guid isPermaLink="false">2706@http://talk.jeelabs.net/</guid>
			<description>&#60;p&#62;just for the record, in (my) Ubuntu the IDE creates &#34;anonymous&#34; directories in the /tmp directory 
but deletes them after the compile. hopefully version 0019 does it differently.&#60;/p&#62;

&#60;p&#62;That shift-trick is very useful ! thanks !&#60;/p&#62;
</description>
		</item>
		<item>
			<title>Jean-Claude on "Arduino 0019"</title>
			<link>http://talk.jeelabs.net/topic/483#post-2704</link>
			<pubDate>Sun, 05 Sep 2010 20:05:38 +0000</pubDate>
			<dc:creator>Jean-Claude</dc:creator>
			<guid isPermaLink="false">2704@http://talk.jeelabs.net/</guid>
			<description>&#60;p&#62;Press the SHIFT key when clicking on the leftmost Run button, and you'll get more info on what the compile does, including where the files end up. This too was added in 0018, IIRC.&#60;/p&#62;
</description>
		</item>
		<item>
			<title>tankslappa on "Arduino 0019"</title>
			<link>http://talk.jeelabs.net/topic/483#post-2702</link>
			<pubDate>Sun, 05 Sep 2010 18:08:25 +0000</pubDate>
			<dc:creator>tankslappa</dc:creator>
			<guid isPermaLink="false">2702@http://talk.jeelabs.net/</guid>
			<description>&#60;p&#62;0018 introduced some &#34;tidying up&#34;, which made it a complete pain if you wanted to get to any of the generate files (.hex for example). In windows they turn up in %temp%, but you have to copy them out before you close arduino, or it'll delete them all.&#60;/p&#62;

&#60;p&#62;No idea where they end up in ubuntu, sorry.&#60;/p&#62;
</description>
		</item>
		<item>
			<title>raalst on "Arduino 0019"</title>
			<link>http://talk.jeelabs.net/topic/483#post-2701</link>
			<pubDate>Sun, 05 Sep 2010 15:50:02 +0000</pubDate>
			<dc:creator>raalst</dc:creator>
			<guid isPermaLink="false">2701@http://talk.jeelabs.net/</guid>
			<description>&#60;p&#62;avr-size is what I was looking for. Thanks.&#60;/p&#62;

&#60;p&#62;but now I do not seem to be able to find my .o files. 
I looked in /tmp and my sketch directories. Also the preferences file does not 
provide more clues (at least to my untrained eye). Does the IDE clean them up after use ?
I did compile one of the sketches without uploading, thinking it would have to keep the 
file. I did a find from my home directory, but alas.
Arduino 0018 on ubuntu.&#60;/p&#62;

&#60;p&#62;anybody any pointers?&#60;/p&#62;
</description>
		</item>
		<item>
			<title>Jean-Claude on "Arduino 0019"</title>
			<link>http://talk.jeelabs.net/topic/483#post-2700</link>
			<pubDate>Sun, 05 Sep 2010 10:49:26 +0000</pubDate>
			<dc:creator>Jean-Claude</dc:creator>
			<guid isPermaLink="false">2700@http://talk.jeelabs.net/</guid>
			<description>&#60;p&#62;You can google for &#34;avr-size&#34; and check &#60;a href=&#34;http://www.nongnu.org/avr-libc/user-manual/malloc.html&#34;&#62;http://www.nongnu.org/avr-libc/user-manual/malloc.html&#60;/a&#62; for some info.&#60;/p&#62;

&#60;p&#62;Here's a sketch which prints out the free memory at run time:&#60;/p&#62;

&#60;pre&#62;&#60;code&#62;static word memFree() {
    extern char* __brkval;
    char a;
    return __brkval ? &#38;amp;a - __brkval : 0;
}

void setup () {
    Serial.begin(57600);
    Serial.println(&#34;\n[memFree]&#34;);

    // forces loading, adds approx 500 bytes to code footprint
    malloc(65535);

    Serial.println(memFree());
}
&#60;/code&#62;&#60;/pre&#62;

&#60;p&#62;Note that there has to be a call to malloc() somewhere for this calculation to work. I added one to make sure (which always fails, and therefore doesn't consume memory, but it still sets things up).&#60;/p&#62;
</description>
		</item>
		<item>
			<title>raalst on "Arduino 0019"</title>
			<link>http://talk.jeelabs.net/topic/483#post-2699</link>
			<pubDate>Sun, 05 Sep 2010 09:32:55 +0000</pubDate>
			<dc:creator>raalst</dc:creator>
			<guid isPermaLink="false">2699@http://talk.jeelabs.net/</guid>
			<description>&#60;p&#62;Just  quick question (because I'm lazy etc.)&#60;/p&#62;

&#60;p&#62;It seems that the GCC underlying the Arduino IDE 
reports on memory use, how do you guys get that information out ?&#60;/p&#62;

&#60;p&#62;I have had a few discussions with my arduino where it simply stopped 
functioning after I added new coding (with a large array declaration..).&#60;/p&#62;

&#60;p&#62;Trimming the array persuaded the Arduino to take up it's job again, 
but I would have loved to be able to check up-front whether the array 
would fit the memory.&#60;/p&#62;
</description>
		</item>
		<item>
			<title>Jean-Claude on "Arduino 0019"</title>
			<link>http://talk.jeelabs.net/topic/483#post-2698</link>
			<pubDate>Sat, 04 Sep 2010 19:12:44 +0000</pubDate>
			<dc:creator>Jean-Claude</dc:creator>
			<guid isPermaLink="false">2698@http://talk.jeelabs.net/</guid>
			<description>&#60;p&#62;The trouble is not C or C++ ... it's the severely limited RAM, and hence heap &#38;amp; stack space.&#60;/p&#62;
</description>
		</item>
		<item>
			<title>tankslappa on "Arduino 0019"</title>
			<link>http://talk.jeelabs.net/topic/483#post-2697</link>
			<pubDate>Sat, 04 Sep 2010 18:59:01 +0000</pubDate>
			<dc:creator>tankslappa</dc:creator>
			<guid isPermaLink="false">2697@http://talk.jeelabs.net/</guid>
			<description>&#60;p&#62;@edwardhorsford&#60;/p&#62;

&#60;p&#62;Aye - Such is the joy of C... Someone please remind me how it became the dominant language, it still makes me shake my head is disbelief!&#60;/p&#62;
</description>
		</item>
		<item>
			<title>edwardhorsford on "Arduino 0019"</title>
			<link>http://talk.jeelabs.net/topic/483#post-2695</link>
			<pubDate>Sat, 04 Sep 2010 17:43:17 +0000</pubDate>
			<dc:creator>edwardhorsford</dc:creator>
			<guid isPermaLink="false">2695@http://talk.jeelabs.net/</guid>
			<description>&#60;p&#62;@steve be careful with the string class. Although it brings wonderful features, there's also great chance for overflows and such if you're not careful.&#60;/p&#62;
</description>
		</item>

	</channel>
</rss>
