experimental_lib/example_c port as arg

This commit is contained in:
Philippe Teuwen 2023-11-11 18:23:58 +01:00
parent 3cb023f560
commit a42cb6dea1
4 changed files with 18 additions and 5 deletions

View file

@ -1,8 +1,14 @@
#include <stdio.h>
#include <stdlib.h>
#include "pm3.h"
int main(int argc, char *argv[]) {
if (argc < 2) {
printf("Usage: %s <port>\n", argv[0]);
exit(-1);
}
pm3 *p;
p = pm3_open("/dev/ttyACM0");
p = pm3_open(argv[1]);
pm3_console(p, "hw status");
pm3_close(p);
}