mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 02:27:26 -07:00
SWIG experiments: introduce context
This commit is contained in:
parent
a503dfcd98
commit
1562b75fc9
11 changed files with 435 additions and 88 deletions
|
@ -1,8 +1,11 @@
|
|||
#include "pm3.h"
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
pm3_context *ctx;
|
||||
ctx = pm3_init();
|
||||
pm3_device *p;
|
||||
p = pm3_open("/dev/ttyACM0");
|
||||
p = pm3_open(ctx, "/dev/ttyACM0");
|
||||
pm3_console(p, "hw status");
|
||||
pm3_close(p);
|
||||
pm3_exit(ctx);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue