mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-11 07:46:09 -07:00
added head comments on CmdHF15Cmd{Read,Write} using Adrian's second patch from issue 20
This commit is contained in:
parent
eba61a5647
commit
05151b6fe8
1 changed files with 8 additions and 0 deletions
|
@ -713,6 +713,10 @@ int CmdHF15CmdSysinfo(const char *Cmd) {
|
|||
|
||||
|
||||
|
||||
/**
|
||||
* Commandline handling: HF15 CMD READ
|
||||
* Reads a single Block
|
||||
*/
|
||||
int CmdHF15CmdRead(const char *Cmd) {
|
||||
UsbCommand *r;
|
||||
uint8_t *recv;
|
||||
|
@ -786,6 +790,10 @@ int CmdHF15CmdRead(const char *Cmd) {
|
|||
}
|
||||
|
||||
|
||||
/**
|
||||
* Commandline handling: HF15 CMD WRITE
|
||||
* Writes a single Block - might run into timeout, even when successful
|
||||
*/
|
||||
int CmdHF15CmdWrite(const char *Cmd) {
|
||||
UsbCommand *r;
|
||||
uint8_t *recv;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue