mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 13:23:25 -07:00
fix command help
add comments in changelog
This commit is contained in:
parent
bf85d22f96
commit
605524b131
2 changed files with 10 additions and 4 deletions
|
@ -5,6 +5,9 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
|
||||||
## [unreleased][unreleased]
|
## [unreleased][unreleased]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
- Added experimental testmode write option for t55xx (danger) (marshmellow)
|
||||||
|
- Added t55xx p1detect to `lf search` chip detections (marshmellow)
|
||||||
|
- Added lf t55xx p1detect, detect page 1 of a t55xx tag based on E015 mfg code (marshmellow)
|
||||||
- Added lf noralsy demod, read, clone, sim commands (iceman)
|
- Added lf noralsy demod, read, clone, sim commands (iceman)
|
||||||
- Added lf jablotron demod, read, clone, sim commands (iceman)
|
- Added lf jablotron demod, read, clone, sim commands (iceman)
|
||||||
- Added lf nexwatch read - reads a nexwatch tag from the antenna
|
- Added lf nexwatch read - reads a nexwatch tag from the antenna
|
||||||
|
@ -54,6 +57,8 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
|
||||||
- Added option c to 'hf list' (mark CRC bytes) (piwi)
|
- Added option c to 'hf list' (mark CRC bytes) (piwi)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
- adjusted lf t5 chip timings to use WaitUS. and adjusted the readblock timings
|
||||||
|
appears to have more consistent results with more antennas.
|
||||||
- `lf t5 wakeup` has been adjusted to not need the p in front of the pwd arg.
|
- `lf t5 wakeup` has been adjusted to not need the p in front of the pwd arg.
|
||||||
- `data psknexwatchdemod` has been moved to `lf nexwatch demod` (reads from graphbuffer)
|
- `data psknexwatchdemod` has been moved to `lf nexwatch demod` (reads from graphbuffer)
|
||||||
- `data fskparadoxdemod` has been moved to `lf paradox demod` (reads from graphbuffer)
|
- `data fskparadoxdemod` has been moved to `lf paradox demod` (reads from graphbuffer)
|
||||||
|
|
|
@ -141,15 +141,16 @@ int usage_t55xx_detect(){
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
int usage_t55xx_detectP1(){
|
int usage_t55xx_detectP1(){
|
||||||
PrintAndLog("Usage: lf t55xx page1detect [1] [p <password>]");
|
PrintAndLog("Command: Detect Page 1 of a t55xx chip");
|
||||||
|
PrintAndLog("Usage: lf t55xx p1detect [1] [p <password>]");
|
||||||
PrintAndLog("Options:");
|
PrintAndLog("Options:");
|
||||||
PrintAndLog(" 1 - if set, use Graphbuffer otherwise read data from tag.");
|
PrintAndLog(" 1 - if set, use Graphbuffer otherwise read data from tag.");
|
||||||
PrintAndLog(" p <password> - OPTIONAL password (8 hex characters)");
|
PrintAndLog(" p <password> - OPTIONAL password (8 hex characters)");
|
||||||
PrintAndLog("");
|
PrintAndLog("");
|
||||||
PrintAndLog("Examples:");
|
PrintAndLog("Examples:");
|
||||||
PrintAndLog(" lf t55xx page1detect");
|
PrintAndLog(" lf t55xx p1detect");
|
||||||
PrintAndLog(" lf t55xx page1detect 1");
|
PrintAndLog(" lf t55xx p1detect 1");
|
||||||
PrintAndLog(" lf t55xx page1detect p 11223344");
|
PrintAndLog(" lf t55xx p1detect p 11223344");
|
||||||
PrintAndLog("");
|
PrintAndLog("");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue