Skip to content

Commit 4eb2363

Browse files
committed
reorganized folder
1 parent e06a103 commit 4eb2363

8 files changed

+57
-52
lines changed

Read-and-delete-me

-9
This file was deleted.
File renamed without changes.

src/arduino-serial/arduino-serial-lib.cpp src/arduino-serial-lib.cpp

+47-18
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ using namespace Rcpp;
2727
// and a baud rate (bps) and connects to that port at that speed and 8N1.
2828
// opens the port in fully raw mode so you can send binary data.
2929
// returns valid fd, or -1 on error
30+
// [[Rcpp::export]]
3031
int serialport_init(const char* serialport, int baud)
3132
{
3233
struct termios toptions;
@@ -61,6 +62,9 @@ int serialport_init(const char* serialport, int baud)
6162
#endif
6263
case 38400: brate=B38400; break;
6364
case 57600: brate=B57600; break;
65+
#ifdef B74880
66+
case 74880: brate=B74880; break;
67+
#endif
6468
case 115200: brate=B115200; break;
6569
}
6670
cfsetispeed(&toptions, brate);
@@ -96,13 +100,13 @@ int serialport_init(const char* serialport, int baud)
96100
return fd;
97101
}
98102

99-
//
103+
// [[Rcpp::export]]
100104
int serialport_close( int fd )
101105
{
102106
return close( fd );
103107
}
104108

105-
//
109+
// [[Rcpp::export]]
106110
int serialport_writebyte( int fd, uint8_t b)
107111
{
108112
int n = write(fd,&b,1);
@@ -111,7 +115,7 @@ int serialport_writebyte( int fd, uint8_t b)
111115
return 0;
112116
}
113117

114-
//
118+
// [[Rcpp::export]]
115119
int serialport_write(int fd, const char* str)
116120
{
117121
int len = strlen(str);
@@ -123,7 +127,7 @@ int serialport_write(int fd, const char* str)
123127
return 0;
124128
}
125129

126-
//
130+
//
127131
int serialport_read_until(int fd, char* buf, char until, int buf_max, int timeout)
128132
{
129133
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
137141
if( timeout==0 ) return -2;
138142
continue;
139143
}
144+
// printf("%d%d%c", i, n, b[0]); // debug
145+
//usleep(4000);
140146
#ifdef SERIALPORTDEBUG
141147
printf("serialport_read_until: i=%d, n=%d b='%c'\n",i,n,b[0]); // debug
142148
#endif
@@ -148,36 +154,59 @@ int serialport_read_until(int fd, char* buf, char until, int buf_max, int timeou
148154
return 0;
149155
}
150156

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]]
152171
int serialport_flush(int fd)
153172
{
154173
sleep(2); //required to make flush work, for some reason
155174
return tcflush(fd, TCIOFLUSH);
156175
}
157176

158-
159177
// =====================================
160178
// [[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',
163182
int timeout = 5000, const int buf_max = 256)
164183
{
165-
184+
166185
int fd;
167186
char buf[buf_max];
168187
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 ) {
174193
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+
}
177198
}
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+
180208
Rcpp::StringVector out2(times);
181209
out2 = out;
210+
serialport_close(fd);
182211
return out2;
183212
}
File renamed without changes.
File renamed without changes.

src/rcpp_hello_world.cpp

-13
This file was deleted.

src/test.cpp

-10
This file was deleted.

test.R

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
library(Rcpp)
2-
sourceCpp("src/arduino-serial/arduino-serial-lib.cpp")
2+
sourceCpp("src/arduino-serial-lib.cpp")
33

4-
aaa <- arduino_read("/dev/cu.SLAB_USBtoUART", times = 1000, eolchar = "\n")
4+
arduino_read("/dev/cu.SLAB_USBtoUART", times = 100, delay = 10, baud = 57600)
5+
6+
7+
aa <- serialport_init("/dev/cu.SLAB_USBtoUART", baud = 57600)
8+
9+
bb <- c()
10+
for (i in 1:1000) {
11+
bb <- c(bb, serialport_read(aa, "\n", 256, 5000))
12+
}
513

0 commit comments

Comments
 (0)