mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-04-28 19:15:12 +00:00
9 lines
159 B
C
9 lines
159 B
C
#include "pm3.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
pm3_device *p;
|
|
p = pm3_open("/dev/ttyACM0");
|
|
pm3_console(p, "hw status");
|
|
pm3_close(p);
|
|
}
|