<?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 on: Bus Pirate: Binary bitbang mode</title>
	<atom:link href="http://dangerousprototypes.com/2009/10/09/bus-pirate-raw-bitbang-mode/feed/" rel="self" type="application/rss+xml" />
	<link>http://dangerousprototypes.com/2009/10/09/bus-pirate-raw-bitbang-mode/</link>
	<description>A new open source hardware project every month</description>
	<lastBuildDate>Thu, 18 Mar 2010 08:01:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ian</title>
		<link>http://dangerousprototypes.com/2009/10/09/bus-pirate-raw-bitbang-mode/#comment-298</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Sat, 16 Jan 2010 08:15:37 +0000</pubDate>
		<guid isPermaLink="false">http://dangerousprototypes.com/?p=1511#comment-298</guid>
		<description>@W1N9Zr0 - Thank you, you are absolutely correct. I updated the post. The relevant code is located here:
http://code.google.com/p/the-bus-pirate/source/browse/trunk/source/binIO.c#227</description>
		<content:encoded><![CDATA[<p>@W1N9Zr0 &#8211; Thank you, you are absolutely correct. I updated the post. The relevant code is located here:<br />
<a href="http://code.google.com/p/the-bus-pirate/source/browse/trunk/source/binIO.c#227" rel="nofollow">http://code.google.com/p/the-bus-pirate/source/browse/trunk/source/binIO.c#227</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: W1N9Zr0</title>
		<link>http://dangerousprototypes.com/2009/10/09/bus-pirate-raw-bitbang-mode/#comment-297</link>
		<dc:creator>W1N9Zr0</dc:creator>
		<pubDate>Sat, 16 Jan 2010 03:05:02 +0000</pubDate>
		<guid isPermaLink="false">http://dangerousprototypes.com/?p=1511#comment-297</guid>
		<description>My v2go running 3.6 has a different order of the input/direction bits:
1&#124;POWER&#124;PULLUP&#124;AUX&#124;MOSI&#124;CLK&#124;MISO&#124;CS
Is the order in the post wrong?</description>
		<content:encoded><![CDATA[<p>My v2go running 3.6 has a different order of the input/direction bits:<br />
1|POWER|PULLUP|AUX|MOSI|CLK|MISO|CS<br />
Is the order in the post wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://dangerousprototypes.com/2009/10/09/bus-pirate-raw-bitbang-mode/#comment-296</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Wed, 21 Oct 2009 13:17:36 +0000</pubDate>
		<guid isPermaLink="false">http://dangerousprototypes.com/?p=1511#comment-296</guid>
		<description>The PIC has a 4-byte hardware RX buffer, so you can probably get away with sending a few bytes in a shorter command. You can probably also load it up a bit and them send a new byte every time you get one back to eliminate some lag.</description>
		<content:encoded><![CDATA[<p>The PIC has a 4-byte hardware RX buffer, so you can probably get away with sending a few bytes in a shorter command. You can probably also load it up a bit and them send a new byte every time you get one back to eliminate some lag.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://dangerousprototypes.com/2009/10/09/bus-pirate-raw-bitbang-mode/#comment-295</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 21 Oct 2009 13:16:18 +0000</pubDate>
		<guid isPermaLink="false">http://dangerousprototypes.com/?p=1511#comment-295</guid>
		<description>...and give your circuit some time to stabilize after switching pull ups or power supplies.</description>
		<content:encoded><![CDATA[<p>&#8230;and give your circuit some time to stabilize after switching pull ups or power supplies.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://dangerousprototypes.com/2009/10/09/bus-pirate-raw-bitbang-mode/#comment-294</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 21 Oct 2009 12:45:04 +0000</pubDate>
		<guid isPermaLink="false">http://dangerousprototypes.com/?p=1511#comment-294</guid>
		<description>Tip to anyone using bin mode, when sending command strings read single replies before sending more commands, sending long commands and attempting to read long replies causes the bus pirate to miss part of the command when performing the first part. This is caused by the bus pirate polling the serial line, since it might be busy when the next byte comes in the pic&#039;s buffer can overflow and the command is lost.</description>
		<content:encoded><![CDATA[<p>Tip to anyone using bin mode, when sending command strings read single replies before sending more commands, sending long commands and attempting to read long replies causes the bus pirate to miss part of the command when performing the first part. This is caused by the bus pirate polling the serial line, since it might be busy when the next byte comes in the pic&#8217;s buffer can overflow and the command is lost.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://dangerousprototypes.com/2009/10/09/bus-pirate-raw-bitbang-mode/#comment-293</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Fri, 09 Oct 2009 11:21:57 +0000</pubDate>
		<guid isPermaLink="false">http://dangerousprototypes.com/?p=1511#comment-293</guid>
		<description>Sounds great! Please share it in the forum, I&#039;ll post it up and add it to the manual.</description>
		<content:encoded><![CDATA[<p>Sounds great! Please share it in the forum, I&#8217;ll post it up and add it to the manual.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Merve</title>
		<link>http://dangerousprototypes.com/2009/10/09/bus-pirate-raw-bitbang-mode/#comment-292</link>
		<dc:creator>Merve</dc:creator>
		<pubDate>Fri, 09 Oct 2009 11:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://dangerousprototypes.com/?p=1511#comment-292</guid>
		<description>When I get mine the first thing I&#039;m going to do is implement a simple SWD script for uploading to Arm Cortex-M3&#039;s.

It took me ages to cobble together all the documentation needed to use that protocol ;)</description>
		<content:encoded><![CDATA[<p>When I get mine the first thing I&#8217;m going to do is implement a simple SWD script for uploading to Arm Cortex-M3&#8217;s.</p>
<p>It took me ages to cobble together all the documentation needed to use that protocol ;)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
