Newer
Older
// ============================================================================
//
// = CONTEXT
// TANGO Project - SCPI KeithleySCPIProtocol Support Library
//
// = FILENAME
// KeithleySCPIProtocol.cpp
//
// = AUTHOR
// X. Elattaoui
//
// ============================================================================
// ============================================================================
// DEPENDENCIES
// ============================================================================
#include <iostream>
#include <sstream>
#include <string>
#include <Xstring.h>
#ifndef WIN32
# include <unistd.h>
#endif
//# include
//#endif
#include "KeithleySCPIProtocol.h"
#include "TangoGpibLink.h"
// ============================================================================
// KeithleySCPIProtocol::KeithleySCPIProtocol
// ============================================================================
KeithleySCPIProtocol::KeithleySCPIProtocol (std::string& gpib_device_name)
: ElectrometerProtocol(),
isDiffSuportedMode(false),
trigCountStr("")
{
std::cout << "KeithleySCPIProtocol::KeithleySCPIProtocol <-" << std::endl;
_communication_link = new TangoGpibLink (gpib_device_name);
cmd_to_send = "FORM:ELEM READ";
_communication_link->write(cmd_to_send);
//- Select control source : IMMediate
cmd_to_send = "ARM:SOUR IMM";
_communication_link->write(cmd_to_send);
//- Set measure count
cmd_to_send = "ARM:COUNT 1";
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
_communication_link->write(cmd_to_send);
std::cout << "KeithleySCPIProtocol::KeithleySCPIProtocol ->" << std::endl;
}
// ============================================================================
// KeithleySCPIProtocol::~KeithleySCPIProtocol
// ============================================================================
KeithleySCPIProtocol::~KeithleySCPIProtocol (void)
{
std::cout << "KeithleySCPIProtocol::~KeithleySCPIProtocol <-" << std::endl;
std::cout << "KeithleySCPIProtocol::~KeithleySCPIProtocol ->" << std::endl;
}
// ============================================================================
// KeithleySCPIProtocol::set_range
// ============================================================================
void KeithleySCPIProtocol::set_range (std::string value)
{
std::string cmd_to_send("");
std::string tmpMode;
//- get electrometer mode
tmpMode = get_mode( );
//- erase bad caracters
tmpMode.erase(tmpMode.find("\n") );
//- send command to Keithley device
cmd_to_send = tmpMode + ":RANGe " + value ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::zero_check_on
// ============================================================================
void KeithleySCPIProtocol::zero_check_on (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "SYST:ZCH ON" ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::zero_check_off
// ============================================================================
void KeithleySCPIProtocol::zero_check_off (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "SYST:ZCH OFF";
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::zero_correct_on
// ============================================================================
void KeithleySCPIProtocol::zero_correct_on (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "SYST:ZCOR ON" ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::zero_correct_off
// ============================================================================
void KeithleySCPIProtocol::zero_correct_off (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "SYST:ZCOR OFF" ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::zero_correct_state_on
// ============================================================================
void KeithleySCPIProtocol::zero_correct_state_on (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "SYST:ZCOR:STAT ON" ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::zero_correct_state_off
// ============================================================================
void KeithleySCPIProtocol::zero_correct_state_off (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "SYST:ZCOR:STAT OFF" ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::autoRange_ON
// ============================================================================
void KeithleySCPIProtocol::autoRange_on (void)
{
std::string cmd_to_send("");
std::string tmpMode;
//- get electrometer mode
tmpMode = get_mode( );
//- erase bad caracters
tmpMode.erase(tmpMode.find("\n") );
cmd_to_send = tmpMode + ":RANGe:AUTO ON" ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::autoRange_OFF
// ============================================================================
void KeithleySCPIProtocol::autoRange_off (void)
{
std::string cmd_to_send("");
std::string tmpMode;
//- get electrometer mode
tmpMode = get_mode( );
//- erase bad caracters
tmpMode.erase(tmpMode.find("\n") );
//- send command
cmd_to_send = tmpMode + ":RANGe:AUTO OFF";
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::auto_zero_on
// ============================================================================
void KeithleySCPIProtocol::auto_zero_on (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "SYST:AZER ON" ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::auto_zero_off
// ============================================================================
void KeithleySCPIProtocol::auto_zero_off (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "SYST:AZER OFF" ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::MODE -> Ampere, Volt, Ohm, Coulomb and V on I meters
// ============================================================================
// ============================================================================
// KeithleySCPIProtocol::setAmperMeterMode
// ============================================================================
void KeithleySCPIProtocol::setAmperMeterMode (void)
{
std::stringstream cmd_to_send;
std::string mode_ ("");
//- mode current (send CURR)
mode_ = "CURRent";
//- send command
cmd_to_send << "FUNC \'" << mode_ << "\'" << std::endl;
_communication_link->write(cmd_to_send.str());
}
// ============================================================================
// KeithleySCPIProtocol::setVoltMeterMode
// ============================================================================
void KeithleySCPIProtocol::setVoltMeterMode (void)
{
std::stringstream cmd_to_send;
std::string mode_ ("");
//- mode volt
mode_ = "VOLTage";
//- send command
cmd_to_send << "FUNC \'" << mode_ << "\'" << std::endl;
_communication_link->write(cmd_to_send.str());
}
// ============================================================================
// KeithleySCPIProtocol::setOhmMeterMode
// ============================================================================
void KeithleySCPIProtocol::setOhmMeterMode (void)
{
std::stringstream cmd_to_send;
std::string mode_ ("");
//- mode ohm
mode_ = "RESistance";
//- send command
cmd_to_send << "FUNC \'" << mode_ << "\'" << std::endl;
_communication_link->write(cmd_to_send.str());
}
// ============================================================================
// KeithleySCPIProtocol::setCoulombMeterMode
// ============================================================================
void KeithleySCPIProtocol::setCoulombMeterMode (void)
{
std::stringstream cmd_to_send;
std::string mode_ ("");
//- mode coulomb
mode_ = "CHARge";
//- send command
cmd_to_send << "FUNC \'" << mode_ << "\'" << std::endl;
_communication_link->write(cmd_to_send.str());
}
// ============================================================================
// KeithleySCPIProtocol::get_mode
// ============================================================================
std::string KeithleySCPIProtocol::get_mode (void)
{
std::string cmd_to_send("");
//- get electrometer mode
if(isDiffSuportedMode)
{
//- send command
cmd_to_send = "FUNC?" ;
_mode = _communication_link->write_read(cmd_to_send);
//- _mode returned is as this "RES" so, erase " caracters
_mode.erase(_mode.find("\""), 1);
_mode.erase(_mode.find("\""), 1);
}
else
_mode = "CURR\n";
return _mode;
}
// ============================================================================
// KeithleySCPIProtocol::get_range
// ============================================================================
std::string KeithleySCPIProtocol::get_range (void)
{
std::string cmd_to_send("");
std::string tmpMode;
//- get electrometer mode
tmpMode = get_mode( );
//- erase bad caracters
tmpMode.erase(tmpMode.find("\n") );
//- send command
cmd_to_send = tmpMode + ":RANGe?" ;
std::string _rangeStr = _communication_link->write_read(cmd_to_send);
return _rangeStr;
}
// ============================================================================
// KeithleySCPIProtocol::get_value
// ============================================================================
std::string KeithleySCPIProtocol::get_value (void)
{
std::string cmd_to_send("");
std::string tmp("");
//- This command performs an INIT and then query the updated value
cmd_to_send = "MEAS?" ;
tmp = _communication_link->write_read(cmd_to_send);
//- extract all data
return tmp;
}
// ============================================================================
// KeithleySCPIProtocol::get_integratedValue
// ============================================================================
std::vector<double> KeithleySCPIProtocol::get_integratedValue (void)
{
std::string cmd_to_send("");
std::string tmp("");
//- This command performs an INIT and then query the bufferised values
cmd_to_send = "TRAC:DATA?" ;
tmp = _communication_link->write_read(cmd_to_send);
//- extract all data
return buildDataList(tmp);
}
// ============================================================================
// KeithleySCPIProtocol::get_fetchValue
// ============================================================================
std::vector<double> KeithleySCPIProtocol::get_fetchValue (void)
{
std::string cmd_to_send("");
std::string tmp("");
//- This command queries the last value(s)
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
tmp = _communication_link->write_read(cmd_to_send);
//- extract all data
return buildDataList(tmp);
}
// ============================================================================
// KeithleySCPIProtocol::buildDataList
//
// This method extract and convert data from the received string
// ============================================================================
std::vector<double> KeithleySCPIProtocol::buildDataList(std::string datalist)
{
std::string dataStr("");
std::vector<double> argout;
std::string::size_type posBeg;
std::string::size_type posEnd;
short numberOfData = 0;
//-
posBeg = 0;
posEnd = datalist.find(',', posBeg);
//-DEBUG std::cout << "\t*****::buildDataList -> argin :\n$" << datalist << "$" << std::endl;
//- there is just one value
if(posEnd == std::string::npos)
{
argout.push_back( XString<double>::convertFromString(datalist) );
//-DEBUG std::cout << "\t*****::buildDataList -> JUST ONE DATA :$" << datalist << "$" << std::endl;
}
else
{
int i = 0;
//std::string tmp = get_triggercount();
numberOfData = XString<short>::convertFromString(get_triggercount());
for(i=0; i < numberOfData; i++)
{
dataStr = datalist.substr(posBeg,posEnd);
argout.push_back( XString<double>::convertFromString(dataStr) );
//-DEBUG std::cout << "\t*****::buildDataList -> FULL OF DATA : " << i << " -> $" << argout[i] << "$" << std::endl;
posBeg = posEnd+1;
posEnd = datalist.find(',', posBeg);
//- end of string reached so latest data is here
if(posEnd == std::string::npos)
{
dataStr = datalist.substr(posBeg);
argout.push_back( XString<double>::convertFromString(dataStr) );
break;
}
}
}
return argout;
}
// ============================================================================
// KeithleySCPIProtocol::init_keithley to perform reading(s) data
// ============================================================================
void KeithleySCPIProtocol::init_keithley (void)
{
std::string cmd_to_send("INIT");
#ifdef WIN32
Sleep( 10 ); //- sleep just a few
#else
usleep(10000);
#endif
//- send command : INIT to trigg readings !
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::abort -> cancel all operations started by INIT command
// ============================================================================
void KeithleySCPIProtocol::abort (void)
{
std::string cmd_to_send("ABORt");
//- send command : ABORt to cancel all operations
_communication_link->write(cmd_to_send);
}
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
// ============================================================================
// KeithleySCPIProtocol::set_knplc : specify the integration rate
// ============================================================================
void KeithleySCPIProtocol::set_knplc (std::string nbNPLC)
{
std::string cmd_to_send("");
std::string tmpMode;
//- get electrometer mode
tmpMode = get_mode( );
//- erase bad caracters
tmpMode.erase(tmpMode.find("\n") );
//- send command
cmd_to_send = tmpMode + ":NPLC " + nbNPLC ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::get_knplc : get the integration rate
// ============================================================================
std::string KeithleySCPIProtocol::get_knplc (void)
{
std::string cmd_to_send("");
std::string tmpMode;
//- get electrometer mode
tmpMode = get_mode( );
//- erase bad caracters
tmpMode.erase(tmpMode.find("\n") );
//- send command
cmd_to_send = tmpMode + ":NPLCycles?" ;
return _communication_link->write_read(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::set_triggercount
// ============================================================================
void KeithleySCPIProtocol::set_triggercount (std::string nbTrigCount)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "TRIG:COUN " + nbTrigCount ;
//- for internal use ( = keithley device buffer size)
trigCountStr = nbTrigCount;
_communication_link->write(cmd_to_send);
//- set buffer size ( = number of triggers )
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
}
// ============================================================================
// KeithleySCPIProtocol::get_triggercount
// ============================================================================
std::string KeithleySCPIProtocol::get_triggercount (void)
{
std::string cmd_to_send("");
std::string response("");
//- send command
cmd_to_send = "TRIG:COUNt?" ;
response = _communication_link->write_read(cmd_to_send);
return response;
}
// ============================================================================
// KeithleySCPIProtocol::set_triggerdelay
// ============================================================================
void KeithleySCPIProtocol::set_triggerdelay (std::string trigDelay)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "TRIG:DEL " + trigDelay ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::get_triggerdelay
// ============================================================================
std::string KeithleySCPIProtocol::get_triggerdelay (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "TRIG:DEL?" ;
return _communication_link->write_read(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::set_triggerdelayAuto
// ============================================================================
void KeithleySCPIProtocol::set_triggerdelayAuto (std::string trigDelayAuto)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "TRIG:DEL:" + trigDelayAuto ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::get_triggerdelayAuto
// ============================================================================
std::string KeithleySCPIProtocol::get_triggerdelayAuto (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "TRIG:DEL:AUTO?" ;
return _communication_link->write_read(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::set_averagecount
// ============================================================================
void KeithleySCPIProtocol::set_averagecount (std::string nbAverageCount)
{
std::string cmd_to_send("");
std::string tmpMode;
//- get electrometer mode
// tmpMode = get_mode( );
//- erase bad caracters
// tmpMode.erase(tmpMode.find("\n") );
//- send command
cmd_to_send = "AVER:COUN " + nbAverageCount;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::get_averagecount
// ============================================================================
std::string KeithleySCPIProtocol::get_averagecount (void)
{
std::string cmd_to_send("");
std::string tmpMode;
//- get electrometer mode
// tmpMode = get_mode( );
//- erase bad caracters
// tmpMode.erase(tmpMode.find("\n") );
//- send command
cmd_to_send = "AVER:COUNt?" ;
return _communication_link->write_read(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::set_averagecontrol
// ============================================================================
void KeithleySCPIProtocol::set_averagecontrol (std::string nbAverageControl)
{
std::string cmd_to_send("");
std::string tmpMode;
//- get electrometer mode
// tmpMode = get_mode( );
//- send command
cmd_to_send = "AVER:TCON " + nbAverageControl;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::get_averagecontrol
// ============================================================================
std::string KeithleySCPIProtocol::get_averagecontrol (void)
{
std::string cmd_to_send("");
std::string tmpMode;
//- get electrometer mode
// tmpMode = get_mode( );
//- send command
cmd_to_send = "AVER:TCONtrol?" ;
return _communication_link->write_read(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::clear_registers
// ============================================================================
void KeithleySCPIProtocol::clear_registers (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "*CLS" ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::averageStateON
// ============================================================================
void KeithleySCPIProtocol::averageStateON (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "AVER ON" ;
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::averageStateOFF
// ============================================================================
void KeithleySCPIProtocol::averageStateOFF (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "AVER OFF";
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::reset
// ============================================================================
void KeithleySCPIProtocol::reset (void)
{
std::string cmd_to_send("");
//- send command
cmd_to_send = "*RST" ;
_communication_link->write(cmd_to_send);
//- Select reading only
cmd_to_send = "FORM:ELEM READ";
//- send command
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::get_raw_status
// ============================================================================
std::string KeithleySCPIProtocol::get_raw_status (void)
{
std::string cmd_to_send("");
std::string argout("no data");
//- send command : read error queue only
cmd_to_send = "STAT:QUE?";
argout = _communication_link->write_read(cmd_to_send);
return argout;
}
// ============================================================================
// KeithleySCPIProtocol::set_buffer_size()
// ============================================================================
void KeithleySCPIProtocol::set_buffer_size (std::string size)
{
std::string cmd_to_send("");
//- send command : size = number of triggers
// ============================================================================
// KeithleySCPIProtocol::get_buffer_size()
// ============================================================================
std::string KeithleySCPIProtocol::get_buffer_size ( )
{
std::string cmd_to_send("TRAC:POIN:ACTual?");
//- send command :
return _communication_link->write_read(cmd_to_send);
}
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
// ============================================================================
// KeithleySCPIProtocol::clear_buffer()
// ============================================================================
void KeithleySCPIProtocol::clear_buffer (void)
{
std::string cmd_to_send("TRAC:CLEAR");
//- send command : clear previous data
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::store_raw_input()
// ============================================================================
void KeithleySCPIProtocol::store_raw_input (void)
{
std::string cmd_to_send("TRAC:FEED SENS");
//- send command : Store raw input readings
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::start_storing()
// ============================================================================
void KeithleySCPIProtocol::start_storing (void)
{
std::string cmd_to_send("TRAC:FEED:CONT NEXT");
//- send command : Start storing readings
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::enable_SRQBufferFull()
// ============================================================================
void KeithleySCPIProtocol::enable_SRQBufferFull (void)
{
/**********************************************************/
/* NOTE : */
/* 512 is the 10th bit in the MESUREMENT EVENT REGISTERS */
/* which the BUFFER FULL bit that can be enabled */
/**********************************************************/
std::string cmd_to_send("STAT:MEAS:ENAB 512");
//- send command : enable buffer full in the Measurement event enable register
_communication_link->write(cmd_to_send);
//- Program the service request enable register: to send SRQ on Buffer Full !
cmd_to_send = "*SRE 1";
_communication_link->write(cmd_to_send);
}
// ============================================================================
// KeithleySCPIProtocol::disable_SRQBufferFull()
// ============================================================================
void KeithleySCPIProtocol::disable_SRQBufferFull (void)
{
std::string cmd_to_send("STAT:MEAS?");
//- send command : disable buffer full event
_communication_link->write_read(cmd_to_send);
//- Disable the service request enable register
cmd_to_send = "*SRE 0";
_communication_link->write(cmd_to_send);
}
// ============================================================================
// ============================================================================
//- if asserted -> the programmed event occurs : the device can be asked !
return _communication_link->SRQLineState();
//- Cf Keithley doc to know how the to get the wanted event
//- Chapter : Status Structure
}
// ============================================================================
// KeithleySCPIProtocol::readStatusByteRegister()
// ============================================================================
short KeithleySCPIProtocol::readStatusByteRegister (void)
{
//- if SRQ line UP -> the programmed event(s) occurs : the value is available !
return _communication_link->readStatusByteRegister();
//- Cf Keithley doc to know how the to get the wanted event
//- Chapter : Status Structure
}
// ============================================================================
// KeithleySCPIProtocol::read_data_with_no_timestamp
// ============================================================================
void KeithleySCPIProtocol::read_data_with_no_timestamp (void)
{
std::stringstream cmd_to_send;
cmd_to_send << "FORM:ELEM READ" << std::endl;
_communication_link->write(cmd_to_send.str());
}
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
// Following functions are part of commands supported via the SCPI protocol.
// We may have to implement them after first tests on beamlines
/*
// ============================================================================
// KeithleySCPIProtocol::setExternalFeedbackMeterMode
// ============================================================================
void KeithleySCPIProtocol::setExternalFeedbackMeterMode (void)
{
std::stringstream cmd_to_send;
cmd_to_send << "F4X" << std::endl;
_communication_link->write(cmd_to_send());
}
// ============================================================================
// KeithleySCPIProtocol::setVonIMeterMode
// ============================================================================
void KeithleySCPIProtocol::setVonIMeterMode (void)
{
std::stringstream cmd_to_send;
//- send command
try
{
cmd_to_send << "F5X" << std::endl;
_communication_link->write(cmd_to_send.str());
}
catch(Tango::DevFailed& df)
{
Tango::Except::re_throw_exception (df,
(const char*)"COMMUNICATION_ERROR",
(const char*)"Unable to perform a write operation",
(const char*)"KeithleySCPIProtocol::setVonIMeterMode");
}
catch(...)
{
throw ;
}
}
*/
/* TO BE IMPLEMENTED !!!!!
// ============================================================================
// KeithleySCPIProtocol::reading_source
// ============================================================================
void KeithleySCPIProtocol::reading_source (void)
{
}
// ============================================================================
// KeithleySCPIProtocol::reading_source
// ============================================================================
void KeithleySCPIProtocol::data_store (void)
{
}
// ============================================================================
// KeithleySCPIProtocol::reading_source
// ============================================================================
void KeithleySCPIProtocol::data_format (void)
{
}
// ============================================================================
// KeithleySCPIProtocol::reading_source
// ============================================================================
void KeithleySCPIProtocol::baseline_suppression_ON (void)
{
}
// ============================================================================
// KeithleySCPIProtocol::reading_source
// ============================================================================
void KeithleySCPIProtocol::baseline_suppression_OFF (void)
{
}
// ============================================================================
// KeithleySCPIProtocol::reading_source
// ============================================================================
void KeithleySCPIProtocol::keithley_status (void)
{
}
*/