<?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>LeafLabs Garden &#187; Topic: Compile Trace</title>
		<link>http://forums.leaflabs.com/topic.php?id=9389</link>
		<description>A place to share, learn, and grow...</description>
		<language>en-US</language>
		<pubDate>Fri, 22 Jan 2016 00:08: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://forums.leaflabs.com/search.php</link>
		</textInput>
		<atom:link href="http://forums.leaflabs.com/rss.php?topic=9389" rel="self" type="application/rss+xml" />

		<item>
			<title>gbulmer on "Compile Trace"</title>
			<link>http://forums.leaflabs.com/topic.php?id=9389#post-104981</link>
			<pubDate>Wed, 27 Nov 2013 10:42:25 +0000</pubDate>
			<dc:creator>gbulmer</dc:creator>
			<guid isPermaLink="false">104981@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;feurig - Are you having problems posting? Your post is empty when I view the thread.&#60;br /&#62;
A similar thing happened a few weeks ago. Do you think you caused the empty post, or might it be the web browser you are using?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>feurig on "Compile Trace"</title>
			<link>http://forums.leaflabs.com/topic.php?id=9389#post-104979</link>
			<pubDate>Tue, 26 Nov 2013 22:52:30 +0000</pubDate>
			<dc:creator>feurig</dc:creator>
			<guid isPermaLink="false">104979@http://forums.leaflabs.com/</guid>
			<description>&#60;br /&#62;</description>
		</item>
		<item>
			<title>konan on "Compile Trace"</title>
			<link>http://forums.leaflabs.com/topic.php?id=9389#post-104978</link>
			<pubDate>Tue, 26 Nov 2013 12:21:45 +0000</pubDate>
			<dc:creator>konan</dc:creator>
			<guid isPermaLink="false">104978@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;raymadigan, can you share with me the Maple version of OneWire library? I can't find it in the Internet, and I'm too lazy to port it from Arduino to Maple myself :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>raymadigan on "Compile Trace"</title>
			<link>http://forums.leaflabs.com/topic.php?id=9389#post-20731</link>
			<pubDate>Thu, 01 Nov 2012 15:09:08 +0000</pubDate>
			<dc:creator>raymadigan</dc:creator>
			<guid isPermaLink="false">20731@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;I couldn't get your code to work no matter how high I made the timeOut.  I went as high as 200 and the SerialUSB port was not setup yet.  At least that's what I thought at first.  After playing for a while I figured that if I open the Monitor window before the loop was done I would see the result.  So, your code probably works but only for the window of time where the Monitor is opened before setup gets to print the statements.&#60;/p&#62;
&#60;p&#62;Pressing reset halts the program, I would think that it would restart the process not halt it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>raymadigan on "Compile Trace"</title>
			<link>http://forums.leaflabs.com/topic.php?id=9389#post-20729</link>
			<pubDate>Thu, 01 Nov 2012 14:09:09 +0000</pubDate>
			<dc:creator>raymadigan</dc:creator>
			<guid isPermaLink="false">20729@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;I should be able to call SerialUSB.begin() and have it wait.  It is hard to believe that isn't something many people want to do while debugging their code.&#60;/p&#62;
&#60;p&#62;Thanks for the help, I appreciate it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>higwoshy on "Compile Trace"</title>
			<link>http://forums.leaflabs.com/topic.php?id=9389#post-20728</link>
			<pubDate>Thu, 01 Nov 2012 13:58:20 +0000</pubDate>
			<dc:creator>higwoshy</dc:creator>
			<guid isPermaLink="false">20728@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;It's because the setup() routine does not wait for the serialusb to get connected before it finishes.&#60;/p&#62;
&#60;p&#62;Try this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;void setup()
{
 pinMode(13, OUTPUT);

 int timeOut=30;       // Wait for serialUSB, but give up waiting after this many iterations
 while ( !SerialUSB.isConnected() &#38;amp;&#38;amp; --timeOut &#38;gt;0 )
 {
     delay(25);
     togglePin(13);
 }

  SerialUSB.println(&#38;quot;Hi&#38;quot;);

}

void loop()
{
    SerialUSB.println(&#38;quot;Hello World!&#38;quot;);

    delay(200);    

    toggleLED();
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>raymadigan on "Compile Trace"</title>
			<link>http://forums.leaflabs.com/topic.php?id=9389#post-20727</link>
			<pubDate>Thu, 01 Nov 2012 13:26:30 +0000</pubDate>
			<dc:creator>raymadigan</dc:creator>
			<guid isPermaLink="false">20727@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;Is there a reason that SerialUSB.println(&#34;foo&#34;); doesn't work in setup?  I tried it on the BareMinimum sketch.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>raymadigan on "Compile Trace"</title>
			<link>http://forums.leaflabs.com/topic.php?id=9389#post-20726</link>
			<pubDate>Thu, 01 Nov 2012 12:52:52 +0000</pubDate>
			<dc:creator>raymadigan</dc:creator>
			<guid isPermaLink="false">20726@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;When I attempt to compile my project I get the following lines in the output and for probably these unknown reasons to me, SerialUSB.println(&#34;foo&#34;);  as the first line in setup never executes.  Are there any traces that go deeper so I can see what is going on?&#60;/p&#62;
&#60;p&#62;Going to build using 'armcompiler' (ARM)&#60;br /&#62;
    Compiling core...&#60;br /&#62;
    Compiling libraries: Display, Fan, Thermo, OneWire, Duty&#60;/p&#62;
&#60;p&#62;C:\Users\ray\Maple\maple-ide-0.0.12-windowsxp32\libraries\OneWire\OneWire.cpp: In member function 'uint8_t OneWire::reset()':&#60;/p&#62;
&#60;p&#62;C:\Users\ray\Maple\maple-ide-0.0.12-windowsxp32\libraries\OneWire\OneWire.cpp: In member function 'void OneWire::write_bit(uint8_t)':&#60;/p&#62;
&#60;p&#62;C:\Users\ray\Maple\maple-ide-0.0.12-windowsxp32\libraries\OneWire\OneWire.cpp: In member function 'uint8_t OneWire::read_bit()':&#60;/p&#62;
&#60;p&#62;    Compiling the sketch...&#60;/p&#62;
&#60;p&#62; In function 'void initDisplay()':&#60;br /&#62;
 In function 'void reportFermentorStatus()':&#60;br /&#62;
 In function 'void reportBrewStatus()':&#60;br /&#62;
 In function 'bool isFerm()':&#60;br /&#62;
 In function 'bool isBrew()':&#60;br /&#62;
 In function 'bool isLogger()':&#60;br /&#62;
 In function 'bool isDisplay()':&#60;br /&#62;
 In function 'void clearStatus()':&#60;/p&#62;
&#60;p&#62;    Linking...&#60;br /&#62;
    Computing sketch size...&#60;/p&#62;
&#60;p&#62;C:\Users\ray\AppData\Local\Temp\build7116104440593403887.tmp\Fermentor.cpp.bin  :&#60;br /&#62;
section    size   addr&#60;br /&#62;
.data   23464      0&#60;br /&#62;
Total   23464
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
