]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
REM: cleaning up some commented code.
authoriceman1001 <iceman@iuse.se>
Sat, 30 Jul 2016 17:36:48 +0000 (19:36 +0200)
committericeman1001 <iceman@iuse.se>
Sat, 30 Jul 2016 17:36:48 +0000 (19:36 +0200)
armsrc/lfops.c
client/cmdlf.c

index 294bfb5e4206bbe36d32675d1442aea775ca95c3..8b7e98fc2e31b7cd27b2d9c23f3f588abf7f899b 100644 (file)
@@ -22,8 +22,8 @@
 /**
  * Function to do a modulation and then get samples.
  * @param delay_off
- * @param period_0
- * @param period_1
+ * @param periods  0xFFFF0000 is period_0,  0x0000FFFF is period_1
+ * @param useHighFreg
  * @param command
  */
 void ModThenAcquireRawAdcSamples125k(uint32_t delay_off, uint32_t periods, uint32_t useHighFreq, uint8_t *command)
@@ -37,7 +37,7 @@ void ModThenAcquireRawAdcSamples125k(uint32_t delay_off, uint32_t periods, uint3
        uint16_t period_1 =  periods & 0xFFFF;
        
        // 95 == 125 KHz  88 == 124.8 KHz
-       int divisor_used = (useHighFreq) ? 88 : 95 ; // 125 KHz
+       int divisor_used = (useHighFreq) ? 88 : 95;
        sample_config sc = { 0,0,1, divisor_used, 0};
        setSamplingConfig(&sc);
 
index 0453effe11126c5fb9cd3131897c43d1cfae3819..2c33dba9b144ba0e2eba6a16057f60211484a99a 100644 (file)
@@ -123,7 +123,7 @@ int usage_lf_find(void){
 
 /* send a LF command before reading */
 int CmdLFCommandRead(const char *Cmd) {
-//     static char dummy[3] = {0x20,0x00,0x00};
+
        bool errors = FALSE;
        bool useHighFreq = FALSE;
        uint16_t one = 0, zero = 0;
@@ -136,7 +136,6 @@ int CmdLFCommandRead(const char *Cmd) {
                case 'h':
                        return usage_lf_cmdread();
                case 'H':
-                       //dummy[1]='h';
                        useHighFreq = TRUE;
                        cmdp++;
                        break;
Impressum, Datenschutz