-
Notifications
You must be signed in to change notification settings - Fork 5
/
sendserial.cpp
106 lines (94 loc) · 1.93 KB
/
sendserial.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#include <iostream>
#include <getopt.h>
#include "rs232wrapper.h"
#include "binaryblob.h"
#include "debug.h"
#include "config.h"
class SendSerial_Options
{
public:
SendSerial_Options(int argc,char **argv) : serdevice("/dev/ttyUSB0")
{
ParseOptions(argc,argv);
}
void ParseOptions(int argc,char **argv)
{
static struct option long_options[] =
{
{"help",no_argument,NULL,'h'},
{"version",no_argument,NULL,'v'},
{"serdevice",required_argument,NULL,'s'},
{"debug",required_argument,NULL,'d'},
{0, 0, 0, 0}
};
while(1)
{
int c;
c = getopt_long(argc,argv,"hvs:d:",long_options,NULL);
if(c==-1)
break;
switch (c)
{
case 'h':
printf("Usage: %s [options] image1 [image2] ... \n",argv[0]);
printf("\t -h --help\t\tdisplay this message\n");
printf("\t -v --version\t\tdisplay version\n");
printf("\t -s --serdevice\t\tspecify device node for serial comms\n");
printf("\t -d --debug\t\tset debug level (0 for errors only, 4 for verbose output)\n");
throw 0;
break;
case 'v':
printf("%s\n",PACKAGE_STRING);
throw 0;
break;
case 's':
serdevice=optarg;
break;
case 'd':
Debug.SetLevel(DebugLevel(atoi(optarg)));
break;
}
}
}
protected:
std::string serdevice;
std::string watchdir;
bool wait;
};
class SerialStream : public SendSerial_Options, public RS232Wrapper
{
public:
SerialStream(int argc,char **argv) : SendSerial_Options(argc,argv), RS232Wrapper(serdevice)
{
}
~SerialStream()
{
}
void SendFile(const char *fn)
{
BinaryBlob blob(fn);
size_t l=blob.GetSize();
char *p=blob.GetPointer();
Write(p,l);
}
};
int main(int argc,char **argv)
{
Debug.SetLevel(TRACE);
try
{
SerialStream stream(argc,argv);
for(int i=optind;i<argc;++i)
stream.SendFile(argv[i]);
return(0);
}
catch(const char *err)
{
Debug[ERROR] << "Error: " << err << std::endl;
}
catch(int rc)
{
return(rc);
}
return(0);
}