-
Notifications
You must be signed in to change notification settings - Fork 3
/
rs232.cpp
529 lines (427 loc) · 13 KB
/
rs232.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
/*
*
* Author: Teunis van Beelen
* Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014
* last revision: January 31, 2014
* http://www.teuniz.net/RS-232/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* This version of GPL is at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
*
*/
#include <iostream> // cout
#include "rs232.h"
using namespace std;
bool ldb = 0; // DP
int Cport[30], rs_error;
struct termios new_port_settings, old_port_settings[30];
char comports[30][16] = {
"/dev/ttyS0", "/dev/ttyS1", "/dev/ttyS2", "/dev/ttyS3", "/dev/ttyS4",
"/dev/ttyS5",
"/dev/ttyS6", "/dev/ttyS7", "/dev/ttyS8", "/dev/ttyS9", "/dev/ttyS10",
"/dev/ttyS11",
"/dev/ttyS12", "/dev/ttyS13", "/dev/ttyS14", "/dev/ttyS15", "/dev/ttyUSB0",
"/dev/ttyUSB1", "/dev/ttyUSB2", "/dev/ttyUSB3", "/dev/ttyUSB4",
"/dev/ttyUSB5",
"/dev/ttyAMA0", "/dev/ttyAMA1", "/dev/ttyACM0", "/dev/ttyACM1",
"/dev/rfcomm0", "/dev/rfcomm1", "/dev/ircomm0", "/dev/ircomm1"
};
int comport_number = 16; // "/dev/ttyUSB0"
//------------------------------------------------------------------------------
int RS232_OpenComport( int comport_number, int baudrate )
{
int baudr, status;
if( comport_number > 29 || comport_number < 0 ) {
cout << "rs232 illegal comport number " << comport_number << endl;
return ( 1 );
}
switch ( baudrate ) {
case 50:
baudr = B50;
break;
case 75:
baudr = B75;
break;
case 110:
baudr = B110;
break;
case 134:
baudr = B134;
break;
case 150:
baudr = B150;
break;
case 200:
baudr = B200;
break;
case 300:
baudr = B300;
break;
case 600:
baudr = B600;
break;
case 1200:
baudr = B1200;
break;
case 1800:
baudr = B1800;
break;
case 2400:
baudr = B2400;
break;
case 4800:
baudr = B4800;
break;
case 9600:
baudr = B9600;
break;
case 19200:
baudr = B19200;
break;
case 38400:
baudr = B38400;
break;
case 57600:
baudr = B57600;
break;
case 115200:
baudr = B115200;
break;
case 230400:
baudr = B230400;
break;
default:
cout << "rs232: invalid baud rate " << baudrate << endl;
return ( 1 );
break;
}
rs_error = 0;
Cport[comport_number] =
open( comports[comport_number], O_RDWR | O_NOCTTY | O_NDELAY );
if( Cport[comport_number] == -1 ) {
perror( "unable to open comport" );
return ( 1 );
}
rs_error =
tcgetattr( Cport[comport_number], old_port_settings + comport_number );
if( rs_error == -1 ) {
close( Cport[comport_number] );
perror( "unable to read port settings" );
return ( 1 );
}
cout << old_port_settings[comport_number].c_cflag << endl;
cout << old_port_settings[comport_number].c_iflag << endl;
cout << old_port_settings[comport_number].c_oflag << endl;
cout << old_port_settings[comport_number].c_lflag << endl;
cout << old_port_settings[comport_number].c_cc[VMIN] << endl;
cout << old_port_settings[comport_number].c_cc[VTIME] << endl;
memset( &new_port_settings, 0, sizeof( new_port_settings ) ); // clear the new struct
new_port_settings.c_cflag = baudr | CS8 | CLOCAL | CREAD;
new_port_settings.c_iflag = IGNPAR;
new_port_settings.c_oflag = 0;
new_port_settings.c_lflag = FLUSHO;
new_port_settings.c_cc[VMIN] = 0; /* block untill n bytes are received */
new_port_settings.c_cc[VTIME] = 0; /* block untill a timer expires (n * 100 mSec.) */
cout << new_port_settings.c_cflag << endl;
cout << new_port_settings.c_iflag << endl;
cout << new_port_settings.c_oflag << endl;
cout << new_port_settings.c_lflag << endl;
cout << new_port_settings.c_cc[VMIN] << endl;
cout << new_port_settings.c_cc[VTIME] << endl;
rs_error = tcsetattr( Cport[comport_number], TCSANOW, &new_port_settings );
if( rs_error == -1 ) {
close( Cport[comport_number] );
perror( "rs232 unable to adjust port settings " );
return ( 1 );
}
if( ioctl( Cport[comport_number], TIOCMGET, &status ) == -1 ) {
perror( "rs232 unable to get port status" );
return ( 1 );
}
status |= TIOCM_DTR; /* turn on DTR */
status |= TIOCM_RTS; /* turn on RTS */
if( ioctl( Cport[comport_number], TIOCMSET, &status ) == -1 ) {
perror( "rs232 unable to set port status" );
return ( 1 );
}
return ( 0 );
}
//------------------------------------------------------------------------------
int RS232_PollComport( int comport_number, char *buf, int size )
{
int n;
n = read( Cport[comport_number], buf, size );
return ( n );
}
//------------------------------------------------------------------------------
int RS232_SendByte( int comport_number, unsigned char byte )
{
int n;
n = write( Cport[comport_number], &byte, 1 );
if( n < 0 )
return ( 1 );
return ( 0 );
}
//------------------------------------------------------------------------------
int RS232_SendBuf( int comport_number, unsigned char *buf, int size )
{
return ( write( Cport[comport_number], buf, size ) );
}
//------------------------------------------------------------------------------
// Simon need's this function to talk to the Keithley 2410
int RS232_SendBufString( int comport_number, char *buf, int size )
{
return ( write( Cport[comport_number], buf, size ) );
}
//------------------------------------------------------------------------------
void RS232_CloseComport( int comport_number )
{
int status;
if( ioctl( Cport[comport_number], TIOCMGET, &status ) == -1 )
perror( "rs232 unable to get port status" );
status &= ~TIOCM_DTR; /* turn off DTR */
status &= ~TIOCM_RTS; /* turn off RTS */
if( ioctl( Cport[comport_number], TIOCMSET, &status ) == -1 )
perror( "rs232 unable to set port status" );
tcsetattr( Cport[comport_number], TCSANOW,
old_port_settings + comport_number );
close( Cport[comport_number] );
}
//------------------------------------------------------------------------------
/*
Constant Description
TIOCM_LE DSR (data set ready/line enable)
TIOCM_DTR DTR (data terminal ready)
TIOCM_RTS RTS (request to send)
TIOCM_ST Secondary TXD (transmit)
TIOCM_SR Secondary RXD (receive)
TIOCM_CTS CTS (clear to send)
TIOCM_CAR DCD (data carrier detect)
TIOCM_CD Synonym for TIOCM_CAR
TIOCM_RNG RNG (ring)
TIOCM_RI Synonym for TIOCM_RNG
TIOCM_DSR DSR (data set ready)
http://linux.die.net/man/4/tty_ioctl
*/
//------------------------------------------------------------------------------
int RS232_IsDCDEnabled( int comport_number )
{
int status;
ioctl( Cport[comport_number], TIOCMGET, &status );
if( status & TIOCM_CAR )
return ( 1 );
else
return ( 0 );
}
//------------------------------------------------------------------------------
int RS232_IsCTSEnabled( int comport_number )
{
int status;
ioctl( Cport[comport_number], TIOCMGET, &status );
if( status & TIOCM_CTS )
return ( 1 );
else
return ( 0 );
}
//------------------------------------------------------------------------------
int RS232_IsDSREnabled( int comport_number )
{
int status;
ioctl( Cport[comport_number], TIOCMGET, &status );
if( status & TIOCM_DSR )
return ( 1 );
else
return ( 0 );
}
//------------------------------------------------------------------------------
void RS232_enableDTR( int comport_number )
{
int status;
if( ioctl( Cport[comport_number], TIOCMGET, &status ) == -1 )
perror( "rs232 unable to get port status" );
status |= TIOCM_DTR; /* turn on DTR */
if( ioctl( Cport[comport_number], TIOCMSET, &status ) == -1 )
perror( "rs232 unable to set port status" );
}
//------------------------------------------------------------------------------
void RS232_disableDTR( int comport_number )
{
int status;
if( ioctl( Cport[comport_number], TIOCMGET, &status ) == -1 )
perror( "rs232 unable to get port status" );
status &= ~TIOCM_DTR; /* turn off DTR */
if( ioctl( Cport[comport_number], TIOCMSET, &status ) == -1 )
perror( "rs232 unable to set port status" );
}
//------------------------------------------------------------------------------
void RS232_enableRTS( int comport_number )
{
int status;
if( ioctl( Cport[comport_number], TIOCMGET, &status ) == -1 )
perror( "rs232 unable to get port status" );
status |= TIOCM_RTS; /* turn on RTS */
if( ioctl( Cport[comport_number], TIOCMSET, &status ) == -1 )
perror( "rs232 unable to set port status" );
}
//------------------------------------------------------------------------------
void RS232_disableRTS( int comport_number )
{
int status;
if( ioctl( Cport[comport_number], TIOCMGET, &status ) == -1 )
perror( "rs232 unable to get port status" );
status &= ~TIOCM_RTS; /* turn off RTS */
if( ioctl( Cport[comport_number], TIOCMSET, &status ) == -1 )
perror( "rs232 unable to set port status" );
}
//------------------------------------------------------------------------------
void RS232_cputs( int comport_number, const char *text ) // sends a string to serial port
{
while( *text != 0 )
RS232_SendByte( comport_number, *( text++ ) );
}
//------------------------------------------------------------------------------
int openComPort( const int comPortNumber, const int baud )
{
comport_number = comPortNumber;
if( RS232_OpenComport( comport_number, baud ) ) {
cout << " Cannot open COM port" << endl;
return 0;
}
return 1;
}
//------------------------------------------------------------------------------
void closeComPort( )
{
RS232_CloseComport( comport_number );
}
//------------------------------------------------------------------------------
int writeCommand( const char *command )
{
char cmd[256];
char buf[10] = { 0 };
int timeout;
int rb;
int len;
strncpy( cmd, command, 250 );
cmd[250] = 0;
// terminate command with CR LF
if( !strstr( cmd, "\r\n" ) )
strcat( cmd, "\r\n" );
len = strlen( cmd );
int i;
for( i = 0; i < len; i++ ) {
RS232_SendByte( comport_number, cmd[i] );
// read echo
timeout = 10;
do {
rb = RS232_PollComport( comport_number, buf, 1 );
usleep( 10000 );
timeout--;
} while( ( rb == 0 ) && ( timeout > 0 ) );
if( cmd[i] != buf[0] ) {
return 0;
}
}
usleep( 20000 );
return 1;
}
//------------------------------------------------------------------------------
// Allows writing commands to the Keithley 2410
int writeCommandString( const char *command )
{
int len;
char cmd[256];
strncpy( cmd, command, 250 );
cmd[250] = 0;
// terminate command with CR+ LF
if( !strstr( cmd, "\r\n" ) )
strcat( cmd, "\r\n" );
len = strlen( cmd );
RS232_SendBufString( comport_number, cmd, len );
usleep( 20000 );
return 1;
}
//------------------------------------------------------------------------------
int writeCommandAndReadAnswer( const char *command, char *answer )
{
if( ldb )
cout << "RS232 Command: " << command << endl;
int bytesRead;
char inbuf[256];
int to = 0;
char *p;
if( !answer )
return 0;
// write command to HV device
if( !writeCommand( command ) )
return 0;
// init buffer
*answer = 0;
// read answer (terminated with CR + LF)
to = 0;
do {
bytesRead = RS232_PollComport( comport_number, inbuf, sizeof( inbuf ) );
if( bytesRead > 0 ) {
inbuf[bytesRead] = 0;
strcat( answer, inbuf );
to = 0;
}
usleep( 10000 );
} while( ( strstr( answer, "\r\n" ) == 0 ) && ( ++to < 80 ) ); // wait for CR+LF or timeout
// // clear trailing CR + LF
if( ( p = strstr( answer, "\r\n" ) ) )
*p = 0;
usleep( 100000 );
if( ldb )
cout << "RS232 Answer: " << answer << endl;
return 1;
}
//------------------------------------------------------------------------------
// Allows writing commands to the Keithley 2410
int writeCommandStringAndReadAnswer( const char *command, char *answer,
int delay )
{
if( ldb )
cout << "RS232 Command: " << command << endl;
int bytesRead;
char inbuf[256];
int to = 0;
char *p;
if( !answer ) {
return 0;
}
// write command to HV device
if( !writeCommandString( command ) ) {
return 0;
}
usleep( delay * 1000000 );
// init buffer
*answer = 0;
// read answer (terminated with CR)
to = 0;
do {
bytesRead = RS232_PollComport( comport_number, inbuf, sizeof( inbuf ) );
if( bytesRead > 0 ) {
inbuf[bytesRead] = 0;
strcat( answer, inbuf );
to = 0;
}
usleep( 10000 );
} while( ( strstr( answer, "\r\n" ) == 0 ) && ( ++to < 80 ) ); // wait for CR or t$
// // clear trailing CR
if( ( p = strstr( answer, "\r\n" ) ) )
*p = 0;
usleep( 100000 );
if( ldb )
cout << "RS232 Answer: " << answer << endl;
return 1;
}