first lut function

This commit is contained in:
2019-01-14 03:20:54 +01:00
parent 9becddcdac
commit ae4c5334d0
6 changed files with 155 additions and 2 deletions

View File

@@ -53,14 +53,13 @@ return 0;
int main (int argc, char *argv[])
{
int serial_in;
char *device;
char *device = "/dev/ttyACM0";
int nbre, speed, opt;
/* set some default values */
verbosity = 0;
nbre = 25;
speed = 9600;
device = "/dev/ttyACM0";
while ((opt = getopt(argc, argv, "d:n:v")) != -1) {
switch (opt) {