mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
chg t55 timings to match offical repo when compiling for PM3OTHER
This commit is contained in:
parent
f7ad5747f3
commit
93c9dc571f
2 changed files with 25 additions and 14 deletions
|
@ -3582,18 +3582,18 @@ static int CmdT55xxSetDeviceConfig(const char *Cmd) {
|
|||
configurations.m[T55XX_DLMODE_FIXED].write_3 = 0;
|
||||
|
||||
// long leading reference
|
||||
configurations.m[T55XX_DLMODE_LLR].start_gap = 31 * 8;
|
||||
configurations.m[T55XX_DLMODE_LLR].write_gap = 20 * 8;
|
||||
configurations.m[T55XX_DLMODE_LLR].write_0 = 18 * 8;
|
||||
configurations.m[T55XX_DLMODE_LLR].write_1 = 50 * 8;
|
||||
configurations.m[T55XX_DLMODE_LLR].start_gap = 29 * 8;
|
||||
configurations.m[T55XX_DLMODE_LLR].write_gap = 17 * 8;
|
||||
configurations.m[T55XX_DLMODE_LLR].write_0 = 15 * 8;
|
||||
configurations.m[T55XX_DLMODE_LLR].write_1 = 47 * 8;
|
||||
configurations.m[T55XX_DLMODE_LLR].read_gap = 15 * 8;
|
||||
configurations.m[T55XX_DLMODE_LLR].write_2 = 0;
|
||||
configurations.m[T55XX_DLMODE_LLR].write_3 = 0;
|
||||
|
||||
// leading zero
|
||||
configurations.m[T55XX_DLMODE_LEADING_ZERO].start_gap = 31 * 8;
|
||||
configurations.m[T55XX_DLMODE_LEADING_ZERO].write_gap = 20 * 8;
|
||||
configurations.m[T55XX_DLMODE_LEADING_ZERO].write_0 = 18 * 8;
|
||||
configurations.m[T55XX_DLMODE_LEADING_ZERO].start_gap = 29 * 8;
|
||||
configurations.m[T55XX_DLMODE_LEADING_ZERO].write_gap = 17 * 8;
|
||||
configurations.m[T55XX_DLMODE_LEADING_ZERO].write_0 = 15 * 8;
|
||||
configurations.m[T55XX_DLMODE_LEADING_ZERO].write_1 = 40 * 8;
|
||||
configurations.m[T55XX_DLMODE_LEADING_ZERO].read_gap = 15 * 8;
|
||||
configurations.m[T55XX_DLMODE_LEADING_ZERO].write_2 = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue