<?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: any1 tried to use the Maple Leaf with the Logger Shield designed for Arduino?</title>
		<link>http://forums.leaflabs.com/topic.php?id=56</link>
		<description>A place to share, learn, and grow...</description>
		<language>en-US</language>
		<pubDate>Fri, 22 Jan 2016 00:21:11 +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=56" rel="self" type="application/rss+xml" />

		<item>
			<title>mbolivar on "any1 tried to use the Maple Leaf with the Logger Shield designed for Arduino?"</title>
			<link>http://forums.leaflabs.com/topic.php?id=56#post-5118</link>
			<pubDate>Fri, 10 Jun 2011 13:50:00 +0000</pubDate>
			<dc:creator>mbolivar</dc:creator>
			<guid isPermaLink="false">5118@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;stephani,&#60;/p&#62;
&#60;p&#62;Just FYI in case Ricck is no longer watching the forums, there is a community-contributed port of the SdFAT library available.  More info on the wiki:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wiki.leaflabs.com/index.php?title=SDFat_Library&#34; rel=&#34;nofollow&#34;&#62;http://wiki.leaflabs.com/index.php?title=SDFat_Library&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stephani on "any1 tried to use the Maple Leaf with the Logger Shield designed for Arduino?"</title>
			<link>http://forums.leaflabs.com/topic.php?id=56#post-5116</link>
			<pubDate>Fri, 10 Jun 2011 13:00:00 +0000</pubDate>
			<dc:creator>stephani</dc:creator>
			<guid isPermaLink="false">5116@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;Hey Rick, &#60;/p&#62;
&#60;p&#62;I'm trying to do the same thing, and I'm hoping since it's been a year, you have figured out if it was feasible to do and if so, how much extra work did you have to do to make it work?  &#60;/p&#62;
&#60;p&#62;The Maple seems so awesome, and our other choice, the Mega 2560, isn't an exact fit with the shield either and will require extra work.  I just want to know which route has the least amount of extra work because of time restrictions.  Thanks in advance!&#60;/p&#62;
&#60;p&#62;Cheers :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>poslathian on "any1 tried to use the Maple Leaf with the Logger Shield designed for Arduino?"</title>
			<link>http://forums.leaflabs.com/topic.php?id=56#post-259</link>
			<pubDate>Wed, 16 Jun 2010 15:41:49 +0000</pubDate>
			<dc:creator>poslathian</dc:creator>
			<guid isPermaLink="false">259@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;So i just looked through the sdfat code some (the lib used with the adafruit shield) and it looks like the whole thing is surprisingly not AVR dependent. In fact, it depends in a few places on avr/pgmspace.h, which allows users to use the flash memory onboard the avr. We (leaflabs) dont yet but will soon support most of the functions in pgmspace.h. The library has one monolithic pin mapping file, it should be straightforward to add out own pin def's here. The rest of the work depends mostly on spi reads and writes, calls to pinmode, digitalwrite, and other wiring based functions which we support. The only thing Im not sure about is that the adafruit shield has a 5V to 3.3V level shift, since the arduino is a 5V platform and the SD cards are 3.3V devices. Maple, on the other hand, is a 3.3V device, and a level shifter isnt needed. I'm not entirely certain what happens when you shift 3.3 to 3.3, probably nothing. &#60;/p&#62;
&#60;p&#62;Conclusion:&#60;br /&#62;
  with a little work this shield and the lib can be made to work with Maple. I'm going to pin the sdFat maintainer about it, maybe we can do a port of his lib for Maple. It seems a lot of people use sdFat.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>poslathian on "any1 tried to use the Maple Leaf with the Logger Shield designed for Arduino?"</title>
			<link>http://forums.leaflabs.com/topic.php?id=56#post-258</link>
			<pubDate>Wed, 16 Jun 2010 14:54:47 +0000</pubDate>
			<dc:creator>poslathian</dc:creator>
			<guid isPermaLink="false">258@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;Thats a neat shield. It looks like from the schematic (&#60;a href=&#34;http://www.ladyada.net/images/logshield/logschemv1.png&#34; rel=&#34;nofollow&#34;&#62;http://www.ladyada.net/images/logshield/logschemv1.png&#60;/a&#62;) that the SD card interfaces over D10-13 using the SPI protocol. Intentionally, these pins are an exact match for the hardware spi on stm32. The RTC clock interfaces via I2C on pins 19 and 20 (aka A4 and A5), which are GPIO on maple. The breadboard on the side is likely going to be flush with our expansion header, which might be good or bad depending on what you want. You can always pop it off with some solder wick. &#60;/p&#62;
&#60;p&#62;Will it run &#34;out of the box&#34;? probably not, I assume there is some AVR specific code in the SDFAT libs that you can use with this board. I'm not sure how much porting there would be, probably not a whole lot. I'll take a look and see how tractable it is. On the bright side, the hardware spi connection to the flash card means one could theoretically shuffle data into and out of the sd card and high speed and using the DMA (very efficiently!). &#60;/p&#62;
&#60;p&#62;TLDR: Looks good, libs might need some porting.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ricckma on "any1 tried to use the Maple Leaf with the Logger Shield designed for Arduino?"</title>
			<link>http://forums.leaflabs.com/topic.php?id=56#post-257</link>
			<pubDate>Wed, 16 Jun 2010 11:40:30 +0000</pubDate>
			<dc:creator>ricckma</dc:creator>
			<guid isPermaLink="false">257@http://forums.leaflabs.com/</guid>
			<description>&#60;p&#62;It's said that they are compatible, but just want to make sure. Here's the link to the Logger Shield &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.adafruit.com/index.php?main_page=product_info&#38;amp;cPath=17&#38;amp;products_id=243&#38;amp;zenid=7f16ee790f772e61232d4b017889c021&#34; rel=&#34;nofollow&#34;&#62;http://www.adafruit.com/index.php?main_page=product_info&#38;amp;cPath=17&#38;amp;products_id=243&#38;amp;zenid=7f16ee790f772e61232d4b017889c021&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Or had anyone tried to use the maple leaf for data sampling/logging purposes, e.g. writing the data to a SD card? I would really appreciate it if you could share your experience with me.&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Ricck
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
