SWIG experiments: introduce context

This commit is contained in:
Philippe Teuwen 2020-06-13 01:50:10 +02:00
commit 1562b75fc9
11 changed files with 435 additions and 88 deletions

View file

@ -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);
}