<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Proxmark developers community - Proxmark Board Innovations]]></title>
		<link>http://www.proxmark.org/forum/</link>
		<description><![CDATA[The most recent topics at Proxmark developers community.]]></description>
		<lastBuildDate>Wed, 23 Jun 2010 00:18:00 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[My portable proxmark3 setup]]></title>
			<link>http://www.proxmark.org/forum/topic/264/my-portable-proxmark3-setup/new/posts/</link>
			<description><![CDATA[<p>Hey guys,</p><p>I received a nice little portable USB power source today, thanks to duran97 for pointing me to the device, and made the proxmark3 and antennas (125khz + 13.56mhz) in a nice little portable setup.</p><p>It&#039;s about the width, length and height of an Altoids tin can, just a little bit wider.</p><p>I wrapped the proxmark3 in a protective baseball card cover, similar to my Ken Griffey Jr. card. That will be worth something someday...it will help me afford the proxmark8 when I&#039;m older. I cut holes out of the card so that the proxmark3 would fit in nicely, allow the JTAG connector out, allow the relay to breathe, and allow the button to be easily pressed. Everything else is covered nicely. Two holes for what look like capacitors, as well.</p><p>I then use another card holder with a hirose USB cable as both my HF and LF antenna. I use the black/green cables as HF and I connected the LF antenna (purchased from proxmark3.com) to the other two wires. I then fit it in the baseball card holder (had to cut a hole into the card to fit it all in, then taped it all up). Taped up the entire thing with electric tape to get some symmetry and superglued some of the wires on the inside so they don&#039;t move around. It&#039;s very thin and also a small form factor, about the width and length of an Altoids tin.</p><p>The battery is a lithium ion battery with a USB output up to 700ma. Only $20, available from <a href="http://www.radioshack.com/product/index.jsp?productId=2767656&amp;tab=summary">http://www.radioshack.com/product/index &#133; ab=summary</a></p><p>Here are some photos -- you will see an Altoids can for comparison</p><p>Here is everything (antenna on bottom, battery in middle, pm3 on top)<br /><span class="postimg"><img src="http://samy.pl/proxmark3/pm3_all.jpg" alt="http://samy.pl/proxmark3/pm3_all.jpg" /></span></p><p>My man Ken!<br /><span class="postimg"><img src="http://samy.pl/proxmark3/pm3_kgj.jpg" alt="http://samy.pl/proxmark3/pm3_kgj.jpg" /></span></p><p><span class="postimg"><img src="http://samy.pl/proxmark3/pm3_1.jpg" alt="http://samy.pl/proxmark3/pm3_1.jpg" /></span><br /><span class="postimg"><img src="http://samy.pl/proxmark3/pm3_2.jpg" alt="http://samy.pl/proxmark3/pm3_2.jpg" /></span><br /><span class="postimg"><img src="http://samy.pl/proxmark3/pm3_3.jpg" alt="http://samy.pl/proxmark3/pm3_3.jpg" /></span><br /><span class="postimg"><img src="http://samy.pl/proxmark3/pm3_antenna.jpg" alt="http://samy.pl/proxmark3/pm3_antenna.jpg" /></span></p>]]></description>
			<author><![CDATA[dummy@example.com (maxpowel)]]></author>
			<pubDate>Wed, 23 Jun 2010 00:18:00 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/264/my-portable-proxmark3-setup/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[New function: ST Micro SRIX4K tag reading]]></title>
			<link>http://www.proxmark.org/forum/topic/411/new-function-st-micro-srix4k-tag-reading/new/posts/</link>
			<description><![CDATA[<p>I developed a simple patch for add the support to SRIX4K memory tags. Thank you edo512 for your work on SRI512.</p><p>This is my patch. I hope someone can add it in repository.<br /></p><div class="codebox"><pre><code>Index: include/usb_cmd.h
===================================================================
--- include/usb_cmd.h   (revision 258)
+++ include/usb_cmd.h   (working copy)
@@ -60,6 +60,7 @@
 #define CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443                                  0x0301
 #define CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM                      0x0302
 #define CMD_READ_SRI512_TAG                                                                                                            0x0303
+#define CMD_READ_SRIX4K_TAG                                                                                                            0x0304
 #define CMD_READER_ISO_15693                                                                                                   0x0310
 #define CMD_SIMTAG_ISO_15693                                                                                                   0x0311
 #define CMD_SIMULATE_TAG_HF_LISTEN                                                                             0x0380
Index: winsrc/command.cpp
===================================================================
--- winsrc/command.cpp  (revision 258)
+++ winsrc/command.cpp  (working copy)
@@ -108,6 +108,18 @@
        SendCommand(&amp;c, FALSE);
 }

+/* New command to read the contents of a SRIX4K tag
+ * SRIX4K tags are ISO14443-B modulated memory tags,
+ * this command just dumps the contents of the memory/
+ */
+static void CmdSrix4kread(char *str)
+{
+        UsbCommand c;
+        c.cmd = CMD_READ_SRIX4K_TAG;
+        c.ext1 = atoi(str);
+        SendCommand(&amp;c, FALSE);
+}
+
 // ## New command
 static void CmdHi14areader(char *str)
 {
@@ -2935,6 +2947,7 @@
        {&quot;setlfdivisor&quot;,        CmdSetDivisor,                  0, &quot;&lt;19 - 255&gt; -- Drive LF antenna at 12Mhz/(divisor+1)&quot;},
        {&quot;setmux&quot;,              CmdSetMux,                      0, &quot;&lt;loraw|hiraw|lopkd|hipkd&gt; -- Set the ADC mux to a specific value&quot;},
        {&quot;sri512read&quot;,          CmdSri512read,                  0, &quot;&lt;int&gt; -- Read contents of a SRI512 tag&quot;},
+       {&quot;srix4kread&quot;,          CmdSrix4kread,                  0, &quot;&lt;int&gt; -- Read contents of a SRIX4K tag&quot;},
        {&quot;tidemod&quot;,                             CmdTIDemod,                                     1, &quot;Demodulate raw bits for TI-type LF tag&quot;},
        {&quot;tiread&quot;,                              CmdTIRead,                                      0, &quot;Read and decode a TI 134 kHz tag&quot;},
        {&quot;tiwrite&quot;,                             CmdTIWrite,                                     0, &quot;Write new data to a r/w TI 134 kHz tag&quot;},
Index: armsrc/apps.h
===================================================================
--- armsrc/apps.h       (revision 258)
+++ armsrc/apps.h       (working copy)
@@ -81,6 +81,8 @@
 void SimulateIso14443Tag(void);
 void AcquireRawAdcSamplesIso14443(DWORD parameter);
 void ReadSRI512Iso14443(DWORD parameter);
+void ReadSRIX4KIso14443(DWORD parameter);
+void ReadSTMemoryIso14443(DWORD parameter,DWORD dwLast);
 void SnoopIso14443(void);

 /// iso14443a.h
Index: armsrc/appmain.c
===================================================================
--- armsrc/appmain.c    (revision 258)
+++ armsrc/appmain.c    (working copy)
@@ -582,6 +582,9 @@
                case CMD_READ_SRI512_TAG:
                        ReadSRI512Iso14443(c-&gt;ext1);
                        break;
+               case CMD_READ_SRIX4K_TAG:
+                       ReadSRIX4KIso14443(c-&gt;ext1);
+                       break;
 #endif

 #ifdef WITH_ISO14443a
Index: armsrc/iso14443.c
===================================================================
--- armsrc/iso14443.c   (revision 258)
+++ armsrc/iso14443.c   (working copy)
@@ -873,6 +873,15 @@
 //-----------------------------------------------------------------------------
 void ReadSRI512Iso14443(DWORD parameter)
 {
+     ReadSTMemoryIso14443(parameter,0x0F);
+}
+void ReadSRIX4KIso14443(DWORD parameter)
+{
+     ReadSTMemoryIso14443(parameter,0x7F);
+}
+
+void ReadSTMemoryIso14443(DWORD parameter,DWORD dwLast)
+{
     BYTE i = 0x00;

     // Make sure that we start from off, since the tags are stateful;
@@ -961,8 +970,9 @@
     DbpString(&quot;Tag memory dump, block 0 to 15&quot;);
     cmd1[0] = 0x08;
     i = 0x00;
+    dwLast++;
     for (;;) {
-           if (i == 0x10) {
+           if (i == dwLast) {
                    DbpString(&quot;System area block (0xff):&quot;);
                    i = 0xff;
            }
@@ -995,6 +1005,7 @@
 }


+
 //=============================================================================
 // Finally, the `sniffer&#039; combines elements from both the reader and
 // simulated tag, to show both sides of the conversation.</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (XEROEFFECT)]]></author>
			<pubDate>Wed, 16 Jun 2010 11:49:33 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/411/new-function-st-micro-srix4k-tag-reading/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Connect two Proxmarks together]]></title>
			<link>http://www.proxmark.org/forum/topic/485/connect-two-proxmarks-together/new/posts/</link>
			<description><![CDATA[<p>I would like to have some advice on what would be the easiest way of connecting two PM3 together for performing MITM. </p><p>I saw that there are some pins free on the ARM, could these be used?</p><p>This might sound dumb, but supposing that the MITM would be on HF tags, could the LF antenna pins be used in some way without doing hardware modifications to the board ?</p>]]></description>
			<author><![CDATA[dummy@example.com (danymag)]]></author>
			<pubDate>Fri, 07 May 2010 15:16:23 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/485/connect-two-proxmarks-together/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[DMA & circular buffer improvements]]></title>
			<link>http://www.proxmark.org/forum/topic/206/dma-circular-buffer-improvements/new/posts/</link>
			<description><![CDATA[<p>I have noticed that some of the software UART routines in the Proxmark tend to exceed the DMA circular buffer capabilities fairly easily (hi14snoop for instance). In the latest (<a href="http://code.google.com/p/proxmark3/source/detail?r=12">Revision 12</a>) SVN, I have made an attempt at increasing the limit at which the routines complain about the DMA buffer being &#039;blown&#039;, but I am not 100% sure I followed the right method: at what limit should we declare that the DMA buffer is blown? DMA buffer size ? A bit less ?</p><p> In particular, it seems that depending on the toolchain I use, I get very different performance on the same routines, some giving very good performance - the Windows toolchain on this site -, others being pretty bad - gcc 4.3.0 on Linux for instance. Does anyone have advice on the right choices there ?</p><p>&nbsp; Also: most routines make use of a globally-defined DMA buffer size: is there any reason not to adapt the DMA buffer size to requirements depending on the function that is called ?</p><p>Thanks for your input!</p><p>ED</p>]]></description>
			<author><![CDATA[dummy@example.com (toffe)]]></author>
			<pubDate>Mon, 12 Apr 2010 22:41:13 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/206/dma-circular-buffer-improvements/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[PM3 LCD]]></title>
			<link>http://www.proxmark.org/forum/topic/436/pm3-lcd/new/posts/</link>
			<description><![CDATA[<p>I&#039;ve uploaded the required files to build the portable LCD version PM3 for those that were keen on it. Currently sitting in /Uploads but Roel might move them to /Hardware Revisions/experimental/PM3-LCD soon <img src="http://www.proxmark.org/forum/img/smilies/wink.png" width="15" height="15" alt="wink" /></p><p>All the parts required to build it can be obtained from 3 suppliers, PCB from batchpcb.com (3 weeks lead), LCD from sparkfun.com (1 week) everything else from Digikey.com (1 week).</p><p>Read the readme file, any other questions, post them here on the forum and I&#039;ll answer them. As I&#039;ve said before, I&#039;ve built this already and field tested it without any real issues but I sent the assembled device to someone. I have more parts coming next week to make another one for myself.</p><p>I understand that most people don&#039;t want to make their own due to the difficulty of soldering small parts. I&#039;m half thinking at looking into getting some assembled. If for argument&#039;s sake a complete board cost, say $350 USD (same as the original PM3) would you consider purchasing?</p><p><a href="http://farm3.static.flickr.com/2679/4247225606_939c63f8c7_b.jpg"><span class="postimg"><img src="http://farm3.static.flickr.com/2679/4247225606_939c63f8c7_m.jpg" alt="http://farm3.static.flickr.com/2679/4247225606_939c63f8c7_m.jpg" /></span></a> <a href="http://farm5.static.flickr.com/4061/4247225730_91878b45d0_b.jpg"><span class="postimg"><img src="http://farm5.static.flickr.com/4061/4247225730_91878b45d0_m.jpg" alt="http://farm5.static.flickr.com/4061/4247225730_91878b45d0_m.jpg" /></span></a></p>]]></description>
			<author><![CDATA[dummy@example.com (elektryk)]]></author>
			<pubDate>Sun, 21 Mar 2010 19:33:25 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/436/pm3-lcd/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Proxmark With Bluetooth]]></title>
			<link>http://www.proxmark.org/forum/topic/199/proxmark-with-bluetooth/new/posts/</link>
			<description><![CDATA[<p>Hope I don&#039;t dissapoint saying this is Theory, not something I&#039;ve done or will even attempt myself.</p><p>Surely it&#039;s possible to attach an a an extra peice of hardware to the Proxmark3 to make a simple serial port interface. Then using a peice of electronics like <a href="http://www.sparkfun.com/commerce/product_info.php?products_id=582">http://www.sparkfun.com/commerce/produc &#133; cts_id=582</a> and programming a simple serial protocol for the Proxmark3 it could become wireless.</p><p>If so it&#039;d make life pretty easy for using a Mobiles to access the hardware and read tags, etc.</p>]]></description>
			<author><![CDATA[dummy@example.com (Marifel12)]]></author>
			<pubDate>Sat, 21 Nov 2009 11:49:23 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/199/proxmark-with-bluetooth/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Would Some one post this. Please]]></title>
			<link>http://www.proxmark.org/forum/topic/164/would-some-one-post-this-please/new/posts/</link>
			<description><![CDATA[<p>Would some one be able to post the Proxmark 3 PCB here <br /><a href="http://www.batchpcb.com/index.php/Products">http://www.batchpcb.com/index.php/Products</a><br />it should help a lot of people get going with there PCBs</p><p>Thank You.</p>]]></description>
			<author><![CDATA[dummy@example.com (Fox_Mulder)]]></author>
			<pubDate>Fri, 20 Nov 2009 02:01:59 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/164/would-some-one-post-this-please/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Proxmark 4?]]></title>
			<link>http://www.proxmark.org/forum/topic/91/proxmark-4/new/posts/</link>
			<description><![CDATA[<p>Hey,<br />i was wondering has synergy systems been able to make the proxmark 4? and if so is he going to gpl the files such as gerbers etc or no? and also i think i saw a post ith roel stating he had created PCB antennas and so forth..</p>]]></description>
			<author><![CDATA[dummy@example.com (d18c7db)]]></author>
			<pubDate>Sun, 09 Aug 2009 04:43:51 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/91/proxmark-4/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Proxmark with color LCD]]></title>
			<link>http://www.proxmark.org/forum/topic/102/proxmark-with-color-lcd/new/posts/</link>
			<description><![CDATA[<p>Success! I ended up connecting a Nokia color LCD to the proxmark and displaying some stuff on it. In the picture below I attached the LCD to the top of FPGA with double sided tape and then also attached the ribbon to the top of the ARM with double sided tape also. I removed the tiny connector from the ribbon cable and soldered directly to the pads. Initially I tried to use green wire (wirewrap) but it turned out to be too stiff and bulky so I ended up using the thinnest wire I had, 0.125mm enamel coil wire.</p><p>The LCD is a bit hard to see as the backlight is off and the screen protector has not been peeled off. Initially I was hoping the LCD backlight was LED based and I&#039;d be able to run it off the board&#039;s 5V supply, however in practice the 5V isn&#039;t enough to light up the backlight. Not even a little. You need a minimum 6.5v and ideally somewhere between 7V-9V so at this stage the backlight will stay off. This is why the LCD colors in the picture appear dim and washed out. I&#039;d need a DC/DC boost converter to power up the LCD backlight off the board supply.</p><br /><p><span class="postimg"><img src="http://farm4.static.flickr.com/3157/3098210343_5ceee5aa89.jpg" alt="http://farm4.static.flickr.com/3157/3098210343_5ceee5aa89.jpg" /></span></p><p>The LCD connects to the Serial Peripheral Interface, SPI bus (SPCK, MOSI) which normally goes to the FPGA. JW originally coded the comms to the FPGA by bitbanging so I ended up changing the code to use the SPI to both the FPGA and the LCD. The FPGA is selected with NCS (PA11) and the LCD is selected by an additional spare pin NCS2 (PA10). In addition to that one more pin is required PA7 as the LCD reset line. Closeup of the final hookup can be seen below.</p><p><span class="postimg"><img src="http://farm4.static.flickr.com/3262/3098210333_145d827429.jpg" alt="http://farm4.static.flickr.com/3262/3098210333_145d827429.jpg" /></span></p><br /><p>To complicate thinks a little these, LCD&#039;s come in two flavours, Phillips PCF8833 and Epson S1D15G10D08BE based controllers and the LCD commands between them are different and, get this, the Epson LCD doesn&#039;t support serial output so you can&#039;t query the LCD to find out which type you have. Grrr... Anyway I bought a lot of 5 Phillips LCDs off ebay for $9.95 free shipping (ex Hong Kong). I don&#039;t need 5, but the price was right and I&#039;d rather have spares in case I stuff one up. Or use some for other projects.</p><p>Originally I tried to use some ARM LCD driver code off the sparkfun.com web site that was supposedly written for the Phillips LCD controller but it didn&#039;t seem to work. Turns out the LCD commands matched that of the Epson controller even though the source files were called PCF8833U8_LCD.c&nbsp; Weird. The guy who wrote the code said he based it on the Phillips datasheet !?!? Confusion reigns <img src="http://www.proxmark.org/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>Anyway this is a proof of concept experiment. If ever a proxmark4 is designed I believe this 130x130 pixel color LCD a good fit as it&#039;s easy to interface (only 4 control lines), cheap, ubiquitous (milions of Nokia phones), runs off 3.3v and a one chip boost converter for the LCD backlight could easily be implemented on board to supply the 7v required. The LCD can support 16 lines of 21 characters with a 6x8 pixel font.</p>]]></description>
			<author><![CDATA[dummy@example.com (d18c7db)]]></author>
			<pubDate>Fri, 17 Jul 2009 08:08:38 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/102/proxmark-with-color-lcd/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Programmable low frequency code, ready for testers.]]></title>
			<link>http://www.proxmark.org/forum/topic/190/programmable-low-frequency-code-ready-for-testers/new/posts/</link>
			<description><![CDATA[<p>Well I seem to have done it. I have a new version of code that allows you to specify the low frequency modulation. The FPGA logic for low_read.v and fpga.v has changed so the FPGA needs to be reflashed.</p><p>What I&#039;ve done is implement a way to send specific command/data pairs to the FPGA, so whereas in the original version the ARM could only send an 8 bit configuration byte over the SSP (sync serial port), I&#039;ve changed it to send a 16 bit word which the FPGA interprets as a 4 bit command followed by 12 bits of data.</p><p>Out of the 16 possible commands, only two are impemented. The other 14 FPGA command values can be used in the future for setting internal FPGA parameters should the need arise.</p><p>Command 1 is the old fpga config byte (only the low 8 bits of the data is used)<br />Command 2 sets an internal 8 bit FPGA divisor register used to set the low frequency according to the formula 12Mhz/(divisor+1).</p><p>Some example values:<br /></p><div class="codebox"><pre><code>Divisor  Frequency
255  46.88Khz
119  100.0Khz
95   125.0Khz
87   136.6Khz
59   200.0Khz
19   600.0Khz</code></pre></div><p>I&#039;ve simulated the logic with ModelSim and it works for divisor values of 19-255 inclusive (600Khz to 46.9Khz). Divisor values less than 19 can be programmed and they will drive the antenna at the specified frequency, but the logic won&#039;t have enough clock cycles to read the ADC and send it back to the ARM, so stick to 19 and over for divisor.</p><p>I&#039;ve also done practical tests by flashing my board and measuring the frequency at the antenna as well as running hidfskdemod and hi14areader to ensure that the old functionality didn&#039;t break. Anybody else care to test drive it ?</p><p>Example usage:<br /></p><div class="codebox"><pre><code>&gt; setlfdivisor 70
Divisor set, expected freq=169014Hz
#db# Divisor set
&gt; tune
# LF antenna @   4 mA /  5371 mV [1273 ohms] 125Khz
# LF antenna @   4 mA /  5505 mV [1187 ohms] 134Khz
# HF antenna @  47 mA / 11247 mV [235 ohms] 13.56Mhz
&gt; setlfdivisor 80
Divisor set, expected freq=148148Hz
#db# Divisor set
&gt; tune
# LF antenna @   8 mA / 10742 mV [1273 ohms] 125Khz
# LF antenna @   8 mA / 10473 mV [1187 ohms] 134Khz
# HF antenna @  47 mA / 11247 mV [235 ohms] 13.56Mhz
&gt; setlfdivisor 90
Divisor set, expected freq=131868Hz
#db# Divisor set
&gt; tune
# LF antenna @  32 mA / 41491 mV [1273 ohms] 125Khz
# LF antenna @  34 mA / 41491 mV [1187 ohms] 134Khz
# HF antenna @  47 mA / 11214 mV [235 ohms] 13.56Mhz</code></pre></div><p>It should go without saying that if you muck around with the divisor, set it back to 95 if you plan to read some 125Khz tags or else the LF reader functions won&#039;t read too well <img src="http://www.proxmark.org/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (adam@algroup.co.uk)]]></author>
			<pubDate>Mon, 13 Jul 2009 17:50:35 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/190/programmable-low-frequency-code-ready-for-testers/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Proxmark4? Revision to the proxmark3]]></title>
			<link>http://www.proxmark.org/forum/topic/4/proxmark4-revision-to-the-proxmark3/new/posts/</link>
			<description><![CDATA[<p>I am currently in the process of redesigning the proxmark3. The new build will leave most of the FPGA code intact for simplicity&#039;s sake. That is unless someone is willing to rewrite the code. My primary focus in the redesign will be to make the unit more portable by adding a battery, small lcd, buttons, and a place where card data can be stored (either by recoding the arm or adding a eeprom of sorts). I will be posting files as I go along. </p><p>So here&#039;s my question: </p><p>What improvements would you like to see and are there any ways you can help?</p>]]></description>
			<author><![CDATA[dummy@example.com (szymonunion)]]></author>
			<pubDate>Mon, 06 Jul 2009 13:57:07 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/4/proxmark4-revision-to-the-proxmark3/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Writing to USB flash drive]]></title>
			<link>http://www.proxmark.org/forum/topic/231/writing-to-usb-flash-drive/new/posts/</link>
			<description><![CDATA[<p>Is there anyway we could use the serial interface used for the LCD mod to write data to a USB flash drive?</p>]]></description>
			<author><![CDATA[dummy@example.com (cptnslick)]]></author>
			<pubDate>Fri, 19 Jun 2009 00:16:14 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/231/writing-to-usb-flash-drive/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[New function: ST Micro SRI512 tag reading]]></title>
			<link>http://www.proxmark.org/forum/topic/200/new-function-st-micro-sri512-tag-reading/new/posts/</link>
			<description><![CDATA[<p>After finally getting how the iso14443-B functions in the proxmark firmware actually work, I added support for reading the contents of SRI512 memory tags: simple open spec&#039;ed ISO14443-B tags which contain 16 blocks of 4 bytes.</p><p>The new &quot;sri512read&quot; function does tag wake-up, select and loops through the memory. Nothing special, but it does the job.</p><p>One note though: I often get errors on the CRC value when reading the tags, though the first bytes are always OK...</p><br /><p>Code is checked in in SVN on google code (<a href="http://code.google.com/p/proxmark3/">http://code.google.com/p/proxmark3/</a>),</p>]]></description>
			<author><![CDATA[dummy@example.com (edo512)]]></author>
			<pubDate>Thu, 16 Apr 2009 10:28:57 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/200/new-function-st-micro-sri512-tag-reading/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[anyone run "20090301_proxmark_doob.zip" smoothly?]]></title>
			<link>http://www.proxmark.org/forum/topic/157/anyone-run-20090301proxmarkdoobzip-smoothly/new/posts/</link>
			<description><![CDATA[<p>hi all,</p><p>I&#039;d flash my pm3 using the newest &quot;20090301_proxmark_doob.zip&quot; version, but when I use &quot;hi14asnoop&quot; to snoop the communications, I can&#039;t stop the snooping process via the push-butoon (&quot;SW1&quot; component) as I do with the &quot;20081211&quot; version. and it&#039;s very strange that the returned-parameter of &quot;tune&quot; is half lower than the &quot;20081211&quot; version (but the antenna) is the same one.</p><p>anyone can help me? thx a ton in advance!</p><p>BR. <br />Ryan</p>]]></description>
			<author><![CDATA[dummy@example.com (d18c7db)]]></author>
			<pubDate>Tue, 07 Apr 2009 12:50:04 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/157/anyone-run-20090301proxmarkdoobzip-smoothly/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Board pdf/pictures in upload dir]]></title>
			<link>http://www.proxmark.org/forum/topic/159/board-pdfpictures-in-upload-dir/new/posts/</link>
			<description><![CDATA[<p>Dear user,</p><p>Who has uploaded the proxmark3.1b.pdf and the 2 gifs in the upload dir?<br />I can move them to the rightful dir, but I don&#039;t know where they are related to.</p><p>Thanks a lot in advance,</p><p>&nbsp; Roel</p>]]></description>
			<author><![CDATA[dummy@example.com (roel)]]></author>
			<pubDate>Thu, 05 Mar 2009 16:58:29 +0000</pubDate>
			<guid>http://www.proxmark.org/forum/topic/159/board-pdfpictures-in-upload-dir/new/posts/</guid>
		</item>
	</channel>
</rss>
