]>
Commit | Line | Data |
---|---|---|
53d5dc64 | 1 | #ifndef __LFSAMPLING_H |
2 | #define __LFSAMPLING_H | |
31abe49f | 3 | |
24c49d36 | 4 | #include "proxmark3.h" |
5 | #include "apps.h" | |
6 | #include "util.h" | |
7 | #include "string.h" | |
8 | #include "usb_cdc.h" // for usb_poll_validate_length | |
9 | #include "ticks.h" // for StartTicks | |
10 | ||
53d5dc64 | 11 | typedef struct BitstreamOut BitstreamOut; |
12 | ||
ac2df346 | 13 | /** |
14 | * acquisition of T55x7 LF signal. Similart to other LF, but adjusted with @marshmellows thresholds | |
15 | * the data is collected in BigBuf. | |
16 | **/ | |
94422fa2 | 17 | void doT55x7Acquisition(size_t sample_size); |
ac2df346 | 18 | |
31abe49f MHS |
19 | /** |
20 | * Initializes the FPGA for reader-mode (field on), and acquires the samples. | |
21 | * @return number of bits sampled | |
22 | **/ | |
1fbf8956 | 23 | uint32_t SampleLF(bool silent); |
31abe49f MHS |
24 | |
25 | /** | |
26 | * Initializes the FPGA for snoop-mode (field off), and acquires the samples. | |
27 | * @return number of bits sampled | |
28 | **/ | |
29 | ||
30 | uint32_t SnoopLF(); | |
31 | ||
32 | /** | |
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 | |
35 | * the normal way | |
36 | * @param trigger_threshold | |
37 | * @param silent | |
38 | * @return number of bits sampled | |
39 | */ | |
40 | uint32_t DoAcquisition_default(int trigger_threshold, bool silent); | |
41 | /** | |
42 | * @brief Does sample acquisition, using the config values set in the sample_config. | |
43 | * @param trigger_threshold | |
44 | * @param silent | |
45 | * @return number of bits sampled | |
46 | */ | |
47 | ||
48 | uint32_t DoAcquisition_config( bool silent); | |
49 | ||
50 | /** | |
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 | |
54 | * 0 or 95 ==> 125 KHz | |
55 | * | |
56 | **/ | |
57 | void LFSetupFPGAForADC(int divisor, bool lf_field); | |
58 | ||
31abe49f MHS |
59 | /** |
60 | * Called from the USB-handler to set the sampling configuration | |
61 | * The sampling config is used for std reading and snooping. | |
62 | * | |
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. | |
65 | * | |
66 | * Values set to '0' implies no change (except for averaging) | |
67 | * @brief setSamplingConfig | |
68 | * @param sc | |
69 | */ | |
70 | void setSamplingConfig(sample_config *sc); | |
71 | ||
72 | sample_config * getSamplingConfig(); | |
7838f4be | 73 | |
74 | void printConfig(); | |
75 | ||
76 | ||
53d5dc64 | 77 | #endif // __LFSAMPLING_H |