mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
documentation
This commit is contained in:
parent
df5083603c
commit
cb67feee19
2 changed files with 6 additions and 1 deletions
|
@ -1326,6 +1326,7 @@ void ReaderHitag(hitag_function htf, hitag_data *htd) {
|
||||||
}
|
}
|
||||||
|
|
||||||
LED_D_ON();
|
LED_D_ON();
|
||||||
|
|
||||||
hitag2_init();
|
hitag2_init();
|
||||||
|
|
||||||
// init as reader
|
// init as reader
|
||||||
|
|
|
@ -155,7 +155,11 @@ void lf_init(bool reader) {
|
||||||
FpgaSetupSsc();
|
FpgaSetupSsc();
|
||||||
|
|
||||||
// When in reader mode, give the field a bit of time to settle.
|
// When in reader mode, give the field a bit of time to settle.
|
||||||
if (reader) SpinDelay(50);
|
// 313T0 = 313 * 8us = 2504us = 2.5ms Hitag2 tags needs to be fully powered.
|
||||||
|
if (reader) {
|
||||||
|
// 50 ms
|
||||||
|
SpinDelay(50);
|
||||||
|
}
|
||||||
|
|
||||||
// Steal this pin from the SSP (SPI communication channel with fpga) and use it to control the modulation
|
// Steal this pin from the SSP (SPI communication channel with fpga) and use it to control the modulation
|
||||||
AT91C_BASE_PIOA->PIO_PER = GPIO_SSC_DOUT;
|
AT91C_BASE_PIOA->PIO_PER = GPIO_SSC_DOUT;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue