@@ -27,6 +27,7 @@ using namespace Rcpp;
27
27
// and a baud rate (bps) and connects to that port at that speed and 8N1.
28
28
// opens the port in fully raw mode so you can send binary data.
29
29
// returns valid fd, or -1 on error
30
+ // [[Rcpp::export]]
30
31
int serialport_init (const char * serialport, int baud)
31
32
{
32
33
struct termios toptions;
@@ -61,6 +62,9 @@ int serialport_init(const char* serialport, int baud)
61
62
#endif
62
63
case 38400 : brate=B38400; break ;
63
64
case 57600 : brate=B57600; break ;
65
+ #ifdef B74880
66
+ case 74880 : brate=B74880; break ;
67
+ #endif
64
68
case 115200 : brate=B115200; break ;
65
69
}
66
70
cfsetispeed (&toptions, brate);
@@ -96,13 +100,13 @@ int serialport_init(const char* serialport, int baud)
96
100
return fd;
97
101
}
98
102
99
- //
103
+ // [[Rcpp::export]]
100
104
int serialport_close ( int fd )
101
105
{
102
106
return close ( fd );
103
107
}
104
108
105
- //
109
+ // [[Rcpp::export]]
106
110
int serialport_writebyte ( int fd, uint8_t b)
107
111
{
108
112
int n = write (fd,&b,1 );
@@ -111,7 +115,7 @@ int serialport_writebyte( int fd, uint8_t b)
111
115
return 0 ;
112
116
}
113
117
114
- //
118
+ // [[Rcpp::export]]
115
119
int serialport_write (int fd, const char * str)
116
120
{
117
121
int len = strlen (str);
@@ -123,7 +127,7 @@ int serialport_write(int fd, const char* str)
123
127
return 0 ;
124
128
}
125
129
126
- //
130
+ //
127
131
int serialport_read_until (int fd, char * buf, char until, int buf_max, int timeout)
128
132
{
129
133
char b[1 ]; // read expects an array, so we give it a 1-byte array
@@ -137,6 +141,8 @@ int serialport_read_until(int fd, char* buf, char until, int buf_max, int timeou
137
141
if ( timeout==0 ) return -2 ;
138
142
continue ;
139
143
}
144
+ // printf("%d%d%c", i, n, b[0]); // debug
145
+ // usleep(4000);
140
146
#ifdef SERIALPORTDEBUG
141
147
printf (" serialport_read_until: i=%d, n=%d b='%c'\n " ,i,n,b[0 ]); // debug
142
148
#endif
@@ -148,36 +154,59 @@ int serialport_read_until(int fd, char* buf, char until, int buf_max, int timeou
148
154
return 0 ;
149
155
}
150
156
151
- //
157
+ // [[Rcpp::export]]
158
+ Rcpp::String serialport_read (int fd, char eolchar, int buf_max, int timeout)
159
+ {
160
+ if ( fd == -1 ) printf (" serial port not opened.\n " );
161
+ char buf[buf_max];
162
+ Rcpp::String out;
163
+
164
+ memset (buf,0 ,buf_max);
165
+ serialport_read_until (fd, buf, eolchar, buf_max, timeout);
166
+ out = buf;
167
+ return (out);
168
+ }
169
+
170
+ // [[Rcpp::export]]
152
171
int serialport_flush (int fd)
153
172
{
154
173
sleep (2 ); // required to make flush work, for some reason
155
174
return tcflush (fd, TCIOFLUSH);
156
175
}
157
176
158
-
159
177
// =====================================
160
178
// [[Rcpp::export]]
161
- Rcpp::StringVector arduino_read (const char * serialport, int baudrate = 9600 ,
162
- int times = 10 , char eolchar = ' \n ' ,
179
+ Rcpp::StringVector arduino_read (const char * serialport, int baud = 9600 ,
180
+ int times = 10 , int delay = 10 ,
181
+ char eolchar = ' \n ' ,
163
182
int timeout = 5000 , const int buf_max = 256 )
164
183
{
165
-
184
+
166
185
int fd;
167
186
char buf[buf_max];
168
187
std::vector<std::string> out (times);
169
-
170
- fd = serialport_init (serialport, baudrate );
171
- memset (buf, 0 ,buf_max); //
172
- serialport_read_until (fd, buf, eolchar, buf_max, timeout) ;
173
- for ( int i= 0 ; i< times; ++i ) {
188
+
189
+ fd = serialport_init (serialport, baud );
190
+ if ( fd == - 1 ) printf ( " serial port not opened. \n " );
191
+ int i = 0 ;
192
+ while ( i < times ) {
174
193
serialport_read_until (fd, buf, eolchar, buf_max, timeout);
175
- out[i] = buf;
176
- memset (&buf[0 ], 0 , sizeof (buf));
194
+ if (strlen (buf) != 0 ) {
195
+ out[i] = buf;
196
+ i++;
197
+ }
177
198
}
178
-
179
- serialport_close (fd);
199
+ // memset(buf,0,buf_max); //
200
+ // serialport_read_until(fd, buf, eolchar, buf_max, timeout);
201
+ // for (int i=0; i<times; ++i) {
202
+ // memset(buf,0,buf_max); //
203
+ // serialport_read_until(fd, buf, eolchar, buf_max, timeout);
204
+ // out[i] = buf;
205
+ // usleep(delay * 1000);
206
+ // }
207
+
180
208
Rcpp::StringVector out2 (times);
181
209
out2 = out;
210
+ serialport_close (fd);
182
211
return out2;
183
212
}
0 commit comments