mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-05 23:17:58 +08:00
9 lines
152 B
C
9 lines
152 B
C
|
#include "pm3.h"
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
pm3 *p;
|
||
|
p = pm3_open("/dev/ttyACM0");
|
||
|
pm3_console(p, "hw status");
|
||
|
pm3_close(p);
|
||
|
}
|