Research, development and trades concerning the powerful Proxmark3 device.
Remember; sharing is caring. Bring something back to the community.
"Learn the tools of the trade the hard way." +Fravia
Time changes and with it the technology
Proxmark3 @ discord
Users of this forum, please be aware that information stored on this site is not private.
Pages: 1
Hello !
I would like to program functions to write on PCF7931 tags. The protocol uses an ASK modulation and I was wondering if functions already exists to config FPGA for the ASK ?
In proxmark3.h I found this configuration for FPGA in LF mode :
[== C++ ==]
// LF
#define FPGA_MAJOR_MODE_LF_ADC (0<<5)
#define FPGA_MAJOR_MODE_LF_EDGE_DETECT (1<<5)
#define FPGA_MAJOR_MODE_LF_PASSTHRU (2<<5)
// Options for LF_ADC
#define FPGA_LF_ADC_READER_FIELD
Can MODE_LF_PASSTHRU be useful for ASK modulation ?
I wanted to say I saw the list of FPGA mods in the file armsrc/fpgaloader.h (not proxmark.h)
The ASK modulation that I would like to use has only 2 levels : a high and low amplitude at 125k.
Do you think it is possible with the current code to do this or an improvement of the verilog code is needed ?
I would like to generate this :
I searched if tag existing in the github already uses ASK modulation, I got the TI tag that uses an OOK modulation that looks like to the ASK. It uses this commands
:
[== C++ ==]
// stop modulating antenna
LOW(GPIO_SSC_DOUT);
SpinDelayUs(1000);
// modulate antenna
HIGH(GPIO_SSC_DOUT);
SpinDelayUs(1000);
Is it possible to control the voltage level when it's modulates antenna to do ASK ?
Thank you !
AFAIK, there is no tight control for voltages when modulating the antenna. you are modulating or not modulating. (which is actually what you are showing in the image)