]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
update changelog 570/head
authormarshmellow42 <marshmellowrf@gmail.com>
Wed, 14 Feb 2018 20:41:39 +0000 (15:41 -0500)
committermarshmellow42 <marshmellowrf@gmail.com>
Wed, 14 Feb 2018 20:41:39 +0000 (15:41 -0500)
+fix a comment typo
+ move clear bigbuf after fpgadownloadandgo...

CHANGELOG.md
armsrc/lfops.c
armsrc/lfsampling.c

index 4162c638d30e5d196700dda0c3f1dfbeee5effba..36e57b5b43c7a307a583cc2f5eb4fbd66b98294f 100644 (file)
@@ -6,6 +6,7 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
 ## [unreleased][unreleased]
 
 ### Changed
+- Adjusted `lf cmdread` to respond to client when complete and the client will then automatically call `data samples`
 - Improved backdoor detection missbehaving magic s50/1k tag (Fl0-0)
 - Deleted wipe functionality from `hf mf csetuid` (Merlok)
 - Changed `hf mf nested` logic (Merlok)
@@ -21,6 +22,7 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
 - Changed start sequence in Qt mode (fix: short commands hangs main Qt thread) (Merlok)
 
 ### Added
+- Added a bitbang mode to `lf cmdread` if delay is 0 the cmd bits turn off and on the antenna with 0 and 1 respectively (marshmellow)
 - Added PAC/Stanley detection to lf search (marshmellow)
 - Added lf pac demod and lf pac read - extracts the raw blocks from a PAC/Stanley tag (marshmellow)
 - Added hf mf c* commands compatibity for 4k and gen1b backdoor (Fl0-0)
index c7a7a59dd9469721ce2845eb150431ae8739bb47..f3bbbf84e19f6f2527ba787a497e70437fda213e 100644 (file)
@@ -33,14 +33,15 @@ void ModThenAcquireRawAdcSamples125k(uint32_t delay_off, uint32_t period_0, uint
 
        // use lf config settings
        sample_config *sc = getSamplingConfig();
-       // clear read buffer
-       BigBuf_Clear_keep_EM();
 
-       /* Make sure the tag is reset */
+       // Make sure the tag is reset
        FpgaDownloadAndGo(FPGA_BITSTREAM_LF);
        FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
        WaitMS(2500);
 
+       // clear read buffer (after fpga bitstream loaded...)
+       BigBuf_Clear_keep_EM();
+
        // power on
        LFSetupFPGAForADC(sc->divisor, 1);
 
index 084201a5a52c25825615896b1d8cd84ca29eecbf..3b0762653b7ea99ea2e1b2dcc1d01632e3dd08db 100644 (file)
@@ -266,7 +266,7 @@ uint32_t SnoopLF()
 }
 
 /**
-* acquisition of Cotag LF signal. Similart to other LF,  since the Cotag has such long datarate RF/384
+* acquisition of Cotag LF signal. Similar to other LF,  since the Cotag has such long datarate RF/384
 * and is Manchester?,  we directly gather the manchester data into bigbuff
 **/
 #define COTAG_T1 384
Impressum, Datenschutz