Revert "SWIG experiments: introduce context"

This reverts commit aa8bf8e0f4.
This commit is contained in:
Philippe Teuwen 2020-06-13 23:43:58 +02:00
commit 78c4f7929a
11 changed files with 87 additions and 434 deletions

View file

@ -1,11 +1,8 @@
#include "pm3.h"
int main(int argc, char *argv[]) {
pm3_context *ctx;
ctx = pm3_init();
pm3_device *p;
p = pm3_open(ctx, "/dev/ttyACM0");
p = pm3_open("/dev/ttyACM0");
pm3_console(p, "hw status");
pm3_close(p);
pm3_exit(ctx);
}