X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/ec81f90ec3a65d1183dc50c4c47405e3f43e1cb1..e70140224f6b9736f01d6cc314687d93a8bb8c97:/winsrc/command.cpp diff --git a/winsrc/command.cpp b/winsrc/command.cpp index e94c234c..5892a8e5 100644 --- a/winsrc/command.cpp +++ b/winsrc/command.cpp @@ -214,6 +214,13 @@ static void CmdLegicRfSim(char *str) SendCommand(&c, FALSE); } +static void CmdLegicRfRead(char *str) +{ + UsbCommand c; + c.cmd = CMD_READER_LEGIC_RF; + SendCommand(&c, FALSE); +} + static void CmdFPGAOff(char *str) // ## FPGA Control { UsbCommand c; @@ -2908,6 +2915,7 @@ static struct { {"lcd", CmdLcd, 0, " -- Send command/data to LCD"}, {"lcdreset", CmdLcdReset, 0, "Hardware reset LCD"}, {"legicrfsim", CmdLegicRfSim, 0, "Start the LEGIC RF tag simulator"}, + {"legicrfread", CmdLegicRfRead, 0, "Start the LEGIC RF reader"}, {"load", CmdLoad, 1, " -- Load trace (to graph window"}, {"locomread", CmdLoCommandRead, 0, " <'0' period> <'1' period> ['h'] -- Modulate LF reader field to send command before read (all periods in microseconds) (option 'h' for 134)"}, {"loread", CmdLoread, 0, "['h'] -- Read 125/134 kHz LF ID-only tag (option 'h' for 134)"},