]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - armsrc/lfsampling.h
5 * acquisition of Cotag LF signal. Similar to other LF, since the Cotag has such long datarate RF/384
6 * and is Manchester?, we directly gather the manchester data into bigbuff
8 void doCotagAcquisition(size_t sample_size
);
9 uint32_t doCotagAcquisitionManchester(void);
12 * acquisition of T55x7 LF signal. Similart to other LF, but adjusted with @marshmellows thresholds
13 * the data is collected in BigBuf.
15 void doT55x7Acquisition(size_t sample_size
);
18 * Initializes the FPGA for reader-mode (field on), and acquires the samples.
19 * @return number of bits sampled
21 uint32_t SampleLF(bool silent
);
24 * Initializes the FPGA for snoop-mode (field off), and acquires the samples.
25 * @return number of bits sampled
29 // adds sample size to default options
30 uint32_t DoPartialAcquisition(int trigger_threshold
, bool silent
, int sample_size
);
33 * @brief Does sample acquisition, ignoring the config values set in the sample_config.
34 * This method is typically used by tag-specific readers who just wants to read the samples
36 * @param trigger_threshold
38 * @return number of bits sampled
40 uint32_t DoAcquisition_default(int trigger_threshold
, bool silent
);
42 * @brief Does sample acquisition, using the config values set in the sample_config.
43 * @param trigger_threshold
45 * @return number of bits sampled
48 uint32_t DoAcquisition_config( bool silent
);
51 * Setup the FPGA to listen for samples. This method downloads the FPGA bitstream
52 * if not already loaded, sets divisor and starts up the antenna.
53 * @param divisor : 1, 88> 255 or negative ==> 134.8 KHz
57 void LFSetupFPGAForADC(int divisor
, bool lf_field
);
60 * Called from the USB-handler to set the sampling configuration
61 * The sampling config is used for std reading and snooping.
63 * Other functions may read samples and ignore the sampling config,
64 * such as functions to read the UID from a prox tag or similar.
66 * Values set to '0' implies no change (except for averaging)
67 * @brief setSamplingConfig
70 void setSamplingConfig(sample_config
*sc
);
72 sample_config
* getSamplingConfig();
77 #endif // LFSAMPLING_H