mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-07 21:10:18 +08:00
8 lines
159 B
C
8 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);
|
|
}
|