-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathyocto_serialport.py
More file actions
1546 lines (1313 loc) · 54.1 KB
/
yocto_serialport.py
File metadata and controls
1546 lines (1313 loc) · 54.1 KB
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
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
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
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
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
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
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#*********************************************************************
#*
#* $Id: yocto_serialport.py 19817 2015-03-23 16:49:57Z seb $
#*
#* Implements yFindSerialPort(), the high-level API for SerialPort functions
#*
#* - - - - - - - - - License information: - - - - - - - - -
#*
#* Copyright (C) 2011 and beyond by Yoctopuce Sarl, Switzerland.
#*
#* Yoctopuce Sarl (hereafter Licensor) grants to you a perpetual
#* non-exclusive license to use, modify, copy and integrate this
#* file into your software for the sole purpose of interfacing
#* with Yoctopuce products.
#*
#* You may reproduce and distribute copies of this file in
#* source or object form, as long as the sole purpose of this
#* code is to interface with Yoctopuce products. You must retain
#* this notice in the distributed source file.
#*
#* You should refer to Yoctopuce General Terms and Conditions
#* for additional information regarding your rights and
#* obligations.
#*
#* THE SOFTWARE AND DOCUMENTATION ARE PROVIDED 'AS IS' WITHOUT
#* WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
#* WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, FITNESS
#* FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO
#* EVENT SHALL LICENSOR BE LIABLE FOR ANY INCIDENTAL, SPECIAL,
#* INDIRECT OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA,
#* COST OF PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR
#* SERVICES, ANY CLAIMS BY THIRD PARTIES (INCLUDING BUT NOT
#* LIMITED TO ANY DEFENSE THEREOF), ANY CLAIMS FOR INDEMNITY OR
#* CONTRIBUTION, OR OTHER SIMILAR COSTS, WHETHER ASSERTED ON THE
#* BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE), BREACH OF
#* WARRANTY, OR OTHERWISE.
#*
#*********************************************************************/
__docformat__ = 'restructuredtext en'
from yocto_api import *
#--- (YSerialPort class start)
#noinspection PyProtectedMember
class YSerialPort(YFunction):
"""
The SerialPort function interface allows you to fully drive a Yoctopuce
serial port, to send and receive data, and to configure communication
parameters (baud rate, bit count, parity, flow control and protocol).
Note that Yoctopuce serial ports are not exposed as virtual COM ports.
They are meant to be used in the same way as all Yoctopuce devices.
"""
#--- (end of YSerialPort class start)
#--- (YSerialPort return codes)
#--- (end of YSerialPort return codes)
#--- (YSerialPort dlldef)
#--- (end of YSerialPort dlldef)
#--- (YSerialPort definitions)
SERIALMODE_INVALID = YAPI.INVALID_STRING
PROTOCOL_INVALID = YAPI.INVALID_STRING
RXCOUNT_INVALID = YAPI.INVALID_UINT
TXCOUNT_INVALID = YAPI.INVALID_UINT
ERRCOUNT_INVALID = YAPI.INVALID_UINT
RXMSGCOUNT_INVALID = YAPI.INVALID_UINT
TXMSGCOUNT_INVALID = YAPI.INVALID_UINT
LASTMSG_INVALID = YAPI.INVALID_STRING
CURRENTJOB_INVALID = YAPI.INVALID_STRING
STARTUPJOB_INVALID = YAPI.INVALID_STRING
COMMAND_INVALID = YAPI.INVALID_STRING
VOLTAGELEVEL_OFF = 0
VOLTAGELEVEL_TTL3V = 1
VOLTAGELEVEL_TTL3VR = 2
VOLTAGELEVEL_TTL5V = 3
VOLTAGELEVEL_TTL5VR = 4
VOLTAGELEVEL_RS232 = 5
VOLTAGELEVEL_RS485 = 6
VOLTAGELEVEL_INVALID = -1
#--- (end of YSerialPort definitions)
def __init__(self, func):
super(YSerialPort, self).__init__(func)
self._className = 'SerialPort'
#--- (YSerialPort attributes)
self._callback = None
self._serialMode = YSerialPort.SERIALMODE_INVALID
self._protocol = YSerialPort.PROTOCOL_INVALID
self._voltageLevel = YSerialPort.VOLTAGELEVEL_INVALID
self._rxCount = YSerialPort.RXCOUNT_INVALID
self._txCount = YSerialPort.TXCOUNT_INVALID
self._errCount = YSerialPort.ERRCOUNT_INVALID
self._rxMsgCount = YSerialPort.RXMSGCOUNT_INVALID
self._txMsgCount = YSerialPort.TXMSGCOUNT_INVALID
self._lastMsg = YSerialPort.LASTMSG_INVALID
self._currentJob = YSerialPort.CURRENTJOB_INVALID
self._startupJob = YSerialPort.STARTUPJOB_INVALID
self._command = YSerialPort.COMMAND_INVALID
self._rxptr = 0
#--- (end of YSerialPort attributes)
#--- (YSerialPort implementation)
def _parseAttr(self, member):
if member.name == "serialMode":
self._serialMode = member.svalue
return 1
if member.name == "protocol":
self._protocol = member.svalue
return 1
if member.name == "voltageLevel":
self._voltageLevel = member.ivalue
return 1
if member.name == "rxCount":
self._rxCount = member.ivalue
return 1
if member.name == "txCount":
self._txCount = member.ivalue
return 1
if member.name == "errCount":
self._errCount = member.ivalue
return 1
if member.name == "rxMsgCount":
self._rxMsgCount = member.ivalue
return 1
if member.name == "txMsgCount":
self._txMsgCount = member.ivalue
return 1
if member.name == "lastMsg":
self._lastMsg = member.svalue
return 1
if member.name == "currentJob":
self._currentJob = member.svalue
return 1
if member.name == "startupJob":
self._startupJob = member.svalue
return 1
if member.name == "command":
self._command = member.svalue
return 1
super(YSerialPort, self)._parseAttr(member)
def get_serialMode(self):
"""
Returns the serial port communication parameters, as a string such as
"9600,8N1". The string includes the baud rate, the number of data bits,
the parity, and the number of stop bits. An optional suffix is included
if flow control is active: "CtsRts" for hardware handshake, "XOnXOff"
for logical flow control and "Simplex" for acquiring a shared bus using
the RTS line (as used by some RS485 adapters for instance).
@return a string corresponding to the serial port communication parameters, as a string such as
"9600,8N1"
On failure, throws an exception or returns YSerialPort.SERIALMODE_INVALID.
"""
if self._cacheExpiration <= YAPI.GetTickCount():
if self.load(YAPI.DefaultCacheValidity) != YAPI.SUCCESS:
return YSerialPort.SERIALMODE_INVALID
return self._serialMode
def set_serialMode(self, newval):
"""
Changes the serial port communication parameters, with a string such as
"9600,8N1". The string includes the baud rate, the number of data bits,
the parity, and the number of stop bits. An optional suffix can be added
to enable flow control: "CtsRts" for hardware handshake, "XOnXOff"
for logical flow control and "Simplex" for acquiring a shared bus using
the RTS line (as used by some RS485 adapters for instance).
@param newval : a string corresponding to the serial port communication parameters, with a string such as
"9600,8N1"
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
rest_val = newval
return self._setAttr("serialMode", rest_val)
def get_protocol(self):
"""
Returns the type of protocol used over the serial line, as a string.
Possible values are "Line" for ASCII messages separated by CR and/or LF,
"Frame:[timeout]ms" for binary messages separated by a delay time,
"Modbus-ASCII" for MODBUS messages in ASCII mode,
"Modbus-RTU" for MODBUS messages in RTU mode,
"Char" for a continuous ASCII stream or
"Byte" for a continuous binary stream.
@return a string corresponding to the type of protocol used over the serial line, as a string
On failure, throws an exception or returns YSerialPort.PROTOCOL_INVALID.
"""
if self._cacheExpiration <= YAPI.GetTickCount():
if self.load(YAPI.DefaultCacheValidity) != YAPI.SUCCESS:
return YSerialPort.PROTOCOL_INVALID
return self._protocol
def set_protocol(self, newval):
"""
Changes the type of protocol used over the serial line.
Possible values are "Line" for ASCII messages separated by CR and/or LF,
"Frame:[timeout]ms" for binary messages separated by a delay time,
"Modbus-ASCII" for MODBUS messages in ASCII mode,
"Modbus-RTU" for MODBUS messages in RTU mode,
"Char" for a continuous ASCII stream or
"Byte" for a continuous binary stream.
The suffix "/[wait]ms" can be added to reduce the transmit rate so that there
is always at lest the specified number of milliseconds between each bytes sent.
@param newval : a string corresponding to the type of protocol used over the serial line
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
rest_val = newval
return self._setAttr("protocol", rest_val)
def get_voltageLevel(self):
"""
Returns the voltage level used on the serial line.
@return a value among YSerialPort.VOLTAGELEVEL_OFF, YSerialPort.VOLTAGELEVEL_TTL3V,
YSerialPort.VOLTAGELEVEL_TTL3VR, YSerialPort.VOLTAGELEVEL_TTL5V, YSerialPort.VOLTAGELEVEL_TTL5VR,
YSerialPort.VOLTAGELEVEL_RS232 and YSerialPort.VOLTAGELEVEL_RS485 corresponding to the voltage
level used on the serial line
On failure, throws an exception or returns YSerialPort.VOLTAGELEVEL_INVALID.
"""
if self._cacheExpiration <= YAPI.GetTickCount():
if self.load(YAPI.DefaultCacheValidity) != YAPI.SUCCESS:
return YSerialPort.VOLTAGELEVEL_INVALID
return self._voltageLevel
def set_voltageLevel(self, newval):
"""
Changes the voltage type used on the serial line. Valid
values will depend on the Yoctopuce device model featuring
the serial port feature. Check your device documentation
to find out which values are valid for that specific model.
Trying to set an invalid value will have no effect.
@param newval : a value among YSerialPort.VOLTAGELEVEL_OFF, YSerialPort.VOLTAGELEVEL_TTL3V,
YSerialPort.VOLTAGELEVEL_TTL3VR, YSerialPort.VOLTAGELEVEL_TTL5V, YSerialPort.VOLTAGELEVEL_TTL5VR,
YSerialPort.VOLTAGELEVEL_RS232 and YSerialPort.VOLTAGELEVEL_RS485 corresponding to the voltage type
used on the serial line
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
rest_val = str(newval)
return self._setAttr("voltageLevel", rest_val)
def get_rxCount(self):
"""
Returns the total number of bytes received since last reset.
@return an integer corresponding to the total number of bytes received since last reset
On failure, throws an exception or returns YSerialPort.RXCOUNT_INVALID.
"""
if self._cacheExpiration <= YAPI.GetTickCount():
if self.load(YAPI.DefaultCacheValidity) != YAPI.SUCCESS:
return YSerialPort.RXCOUNT_INVALID
return self._rxCount
def get_txCount(self):
"""
Returns the total number of bytes transmitted since last reset.
@return an integer corresponding to the total number of bytes transmitted since last reset
On failure, throws an exception or returns YSerialPort.TXCOUNT_INVALID.
"""
if self._cacheExpiration <= YAPI.GetTickCount():
if self.load(YAPI.DefaultCacheValidity) != YAPI.SUCCESS:
return YSerialPort.TXCOUNT_INVALID
return self._txCount
def get_errCount(self):
"""
Returns the total number of communication errors detected since last reset.
@return an integer corresponding to the total number of communication errors detected since last reset
On failure, throws an exception or returns YSerialPort.ERRCOUNT_INVALID.
"""
if self._cacheExpiration <= YAPI.GetTickCount():
if self.load(YAPI.DefaultCacheValidity) != YAPI.SUCCESS:
return YSerialPort.ERRCOUNT_INVALID
return self._errCount
def get_rxMsgCount(self):
"""
Returns the total number of messages received since last reset.
@return an integer corresponding to the total number of messages received since last reset
On failure, throws an exception or returns YSerialPort.RXMSGCOUNT_INVALID.
"""
if self._cacheExpiration <= YAPI.GetTickCount():
if self.load(YAPI.DefaultCacheValidity) != YAPI.SUCCESS:
return YSerialPort.RXMSGCOUNT_INVALID
return self._rxMsgCount
def get_txMsgCount(self):
"""
Returns the total number of messages send since last reset.
@return an integer corresponding to the total number of messages send since last reset
On failure, throws an exception or returns YSerialPort.TXMSGCOUNT_INVALID.
"""
if self._cacheExpiration <= YAPI.GetTickCount():
if self.load(YAPI.DefaultCacheValidity) != YAPI.SUCCESS:
return YSerialPort.TXMSGCOUNT_INVALID
return self._txMsgCount
def get_lastMsg(self):
"""
Returns the latest message fully received (for Line, Frame and Modbus protocols).
@return a string corresponding to the latest message fully received (for Line, Frame and Modbus protocols)
On failure, throws an exception or returns YSerialPort.LASTMSG_INVALID.
"""
if self._cacheExpiration <= YAPI.GetTickCount():
if self.load(YAPI.DefaultCacheValidity) != YAPI.SUCCESS:
return YSerialPort.LASTMSG_INVALID
return self._lastMsg
def get_currentJob(self):
"""
Returns the name of the job file currently in use.
@return a string corresponding to the name of the job file currently in use
On failure, throws an exception or returns YSerialPort.CURRENTJOB_INVALID.
"""
if self._cacheExpiration <= YAPI.GetTickCount():
if self.load(YAPI.DefaultCacheValidity) != YAPI.SUCCESS:
return YSerialPort.CURRENTJOB_INVALID
return self._currentJob
def set_currentJob(self, newval):
"""
Changes the job to use when the device is powered on.
Remember to call the saveToFlash() method of the module if the
modification must be kept.
@param newval : a string corresponding to the job to use when the device is powered on
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
rest_val = newval
return self._setAttr("currentJob", rest_val)
def get_startupJob(self):
"""
Returns the job file to use when the device is powered on.
@return a string corresponding to the job file to use when the device is powered on
On failure, throws an exception or returns YSerialPort.STARTUPJOB_INVALID.
"""
if self._cacheExpiration <= YAPI.GetTickCount():
if self.load(YAPI.DefaultCacheValidity) != YAPI.SUCCESS:
return YSerialPort.STARTUPJOB_INVALID
return self._startupJob
def set_startupJob(self, newval):
"""
Changes the job to use when the device is powered on.
Remember to call the saveToFlash() method of the module if the
modification must be kept.
@param newval : a string corresponding to the job to use when the device is powered on
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
rest_val = newval
return self._setAttr("startupJob", rest_val)
def get_command(self):
if self._cacheExpiration <= YAPI.GetTickCount():
if self.load(YAPI.DefaultCacheValidity) != YAPI.SUCCESS:
return YSerialPort.COMMAND_INVALID
return self._command
def set_command(self, newval):
rest_val = newval
return self._setAttr("command", rest_val)
@staticmethod
def FindSerialPort(func):
"""
Retrieves a serial port for a given identifier.
The identifier can be specified using several formats:
<ul>
<li>FunctionLogicalName</li>
<li>ModuleSerialNumber.FunctionIdentifier</li>
<li>ModuleSerialNumber.FunctionLogicalName</li>
<li>ModuleLogicalName.FunctionIdentifier</li>
<li>ModuleLogicalName.FunctionLogicalName</li>
</ul>
This function does not require that the serial port is online at the time
it is invoked. The returned object is nevertheless valid.
Use the method YSerialPort.isOnline() to test if the serial port is
indeed online at a given time. In case of ambiguity when looking for
a serial port by logical name, no error is notified: the first instance
found is returned. The search is performed first by hardware name,
then by logical name.
@param func : a string that uniquely characterizes the serial port
@return a YSerialPort object allowing you to drive the serial port.
"""
# obj
obj = YFunction._FindFromCache("SerialPort", func)
if obj is None:
obj = YSerialPort(func)
YFunction._AddToCache("SerialPort", func, obj)
return obj
def sendCommand(self, text):
# // may throw an exception
return self.set_command(text)
def reset(self):
"""
Clears the serial port buffer and resets counters to zero.
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
self._rxptr = 0
# // may throw an exception
return self.sendCommand("Z")
def set_RTS(self, val):
"""
Manually sets the state of the RTS line. This function has no effect when
hardware handshake is enabled, as the RTS line is driven automatically.
@param val : 1 to turn RTS on, 0 to turn RTS off
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
# // may throw an exception
return self.sendCommand("R" + str(int(val)))
def get_CTS(self):
"""
Reads the level of the CTS line. The CTS line is usually driven by
the RTS signal of the connected serial device.
@return 1 if the CTS line is high, 0 if the CTS line is low.
On failure, throws an exception or returns a negative error code.
"""
# buff
# res
# // may throw an exception
buff = self._download("cts.txt")
if not (len(buff) == 1):
self._throw(YAPI.IO_ERROR, "invalid CTS reply")
res = YGetByte(buff, 0) - 48
return res
def writeByte(self, code):
"""
Sends a single byte to the serial port.
@param code : the byte to send
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
# // may throw an exception
return self.sendCommand("$" + ("%02X" % code))
def writeStr(self, text):
"""
Sends an ASCII string to the serial port, as is.
@param text : the text string to send
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
# buff
# bufflen
# idx
# ch
buff = YString2Byte(text)
bufflen = len(buff)
if bufflen < 100:
#
ch = 0x20
idx = 0
while (idx < bufflen) and (ch != 0):
ch = YGetByte(buff, idx)
if (ch >= 0x20) and (ch < 0x7f):
idx = idx + 1
else:
ch = 0
if idx >= bufflen:
#
return self.sendCommand("+" + text)
# // send string using file upload
return self._upload("txdata", buff)
def writeBin(self, buff):
"""
Sends a binary buffer to the serial port, as is.
@param buff : the binary buffer to send
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
# // may throw an exception
return self._upload("txdata", buff)
def writeArray(self, byteList):
"""
Sends a byte sequence (provided as a list of bytes) to the serial port.
@param byteList : a list of byte codes
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
# buff
# bufflen
# idx
# hexb
# res
bufflen = len(byteList)
buff = bytearray(bufflen)
idx = 0
while idx < bufflen:
hexb = byteList[idx]
buff[idx] = hexb
idx = idx + 1
# // may throw an exception
res = self._upload("txdata", buff)
return res
def writeHex(self, hexString):
"""
Sends a byte sequence (provided as a hexadecimal string) to the serial port.
@param hexString : a string of hexadecimal byte codes
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
# buff
# bufflen
# idx
# hexb
# res
bufflen = len(hexString)
if bufflen < 100:
#
return self.sendCommand("$" + hexString)
bufflen = ((bufflen) >> (1))
buff = bytearray(bufflen)
idx = 0
while idx < bufflen:
hexb = int((hexString)[2 * idx: 2 * idx + 2], 16)
buff[idx] = hexb
idx = idx + 1
# // may throw an exception
res = self._upload("txdata", buff)
return res
def writeLine(self, text):
"""
Sends an ASCII string to the serial port, followed by a line break (CR LF).
@param text : the text string to send
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
# buff
# bufflen
# idx
# ch
buff = YString2Byte("" + text + "\r\n")
bufflen = len(buff)-2
if bufflen < 100:
#
ch = 0x20
idx = 0
while (idx < bufflen) and (ch != 0):
ch = YGetByte(buff, idx)
if (ch >= 0x20) and (ch < 0x7f):
idx = idx + 1
else:
ch = 0
if idx >= bufflen:
#
return self.sendCommand("!" + text)
# // send string using file upload
return self._upload("txdata", buff)
def writeMODBUS(self, hexString):
"""
Sends a MODBUS message (provided as a hexadecimal string) to the serial port.
The message must start with the subordinate address. The MODBUS CRC/LRC is
automatically added by the function. This function does not wait for a reply.
@param hexString : a hexadecimal message string, including device address but no CRC/LRC
@return YAPI.SUCCESS if the call succeeds.
On failure, throws an exception or returns a negative error code.
"""
# // may throw an exception
return self.sendCommand(":" + hexString)
def readByte(self):
"""
Reads one byte from the receive buffer, starting at current stream position.
If data at current stream position is not available anymore in the receive buffer,
or if there is no data available yet, the function returns YAPI.NO_MORE_DATA.
@return the next byte
On failure, throws an exception or returns a negative error code.
"""
# buff
# bufflen
# mult
# endpos
# res
# // may throw an exception
buff = self._download("rxdata.bin?pos=" + str(int(self._rxptr)) + "&len=1")
bufflen = len(buff) - 1
endpos = 0
mult = 1
while (bufflen > 0) and (YGetByte(buff, bufflen) != 64):
endpos = endpos + mult * (YGetByte(buff, bufflen) - 48)
mult = mult * 10
bufflen = bufflen - 1
self._rxptr = endpos
if bufflen == 0:
return YAPI.NO_MORE_DATA
res = YGetByte(buff, 0)
return res
def readStr(self, nChars):
"""
Reads data from the receive buffer as a string, starting at current stream position.
If data at current stream position is not available anymore in the receive buffer, the
function performs a short read.
@param nChars : the maximum number of characters to read
@return a string with receive buffer contents
On failure, throws an exception or returns a negative error code.
"""
# buff
# bufflen
# mult
# endpos
# res
if nChars > 65535:
nChars = 65535
# // may throw an exception
buff = self._download("rxdata.bin?pos=" + str(int(self._rxptr)) + "&len=" + str(int(nChars)))
bufflen = len(buff) - 1
endpos = 0
mult = 1
while (bufflen > 0) and (YGetByte(buff, bufflen) != 64):
endpos = endpos + mult * (YGetByte(buff, bufflen) - 48)
mult = mult * 10
bufflen = bufflen - 1
self._rxptr = endpos
res = (YByte2String(buff))[0: 0 + bufflen]
return res
def readBin(self, nChars):
"""
Reads data from the receive buffer as a binary buffer, starting at current stream position.
If data at current stream position is not available anymore in the receive buffer, the
function performs a short read.
@param nChars : the maximum number of bytes to read
@return a binary object with receive buffer contents
On failure, throws an exception or returns a negative error code.
"""
# buff
# bufflen
# mult
# endpos
# idx
# res
if nChars > 65535:
nChars = 65535
# // may throw an exception
buff = self._download("rxdata.bin?pos=" + str(int(self._rxptr)) + "&len=" + str(int(nChars)))
bufflen = len(buff) - 1
endpos = 0
mult = 1
while (bufflen > 0) and (YGetByte(buff, bufflen) != 64):
endpos = endpos + mult * (YGetByte(buff, bufflen) - 48)
mult = mult * 10
bufflen = bufflen - 1
self._rxptr = endpos
res = bytearray(bufflen)
idx = 0
while idx < bufflen:
res[idx] = YGetByte(buff, idx)
idx = idx + 1
return res
def readArray(self, nChars):
"""
Reads data from the receive buffer as a list of bytes, starting at current stream position.
If data at current stream position is not available anymore in the receive buffer, the
function performs a short read.
@param nChars : the maximum number of bytes to read
@return a sequence of bytes with receive buffer contents
On failure, throws an exception or returns a negative error code.
"""
# buff
# bufflen
# mult
# endpos
# idx
# b
res = []
if nChars > 65535:
nChars = 65535
# // may throw an exception
buff = self._download("rxdata.bin?pos=" + str(int(self._rxptr)) + "&len=" + str(int(nChars)))
bufflen = len(buff) - 1
endpos = 0
mult = 1
while (bufflen > 0) and (YGetByte(buff, bufflen) != 64):
endpos = endpos + mult * (YGetByte(buff, bufflen) - 48)
mult = mult * 10
bufflen = bufflen - 1
self._rxptr = endpos
del res[:]
idx = 0
while idx < bufflen:
b = YGetByte(buff, idx)
res.append(b)
idx = idx + 1
return res
def readHex(self, nBytes):
"""
Reads data from the receive buffer as a hexadecimal string, starting at current stream position.
If data at current stream position is not available anymore in the receive buffer, the
function performs a short read.
@param nBytes : the maximum number of bytes to read
@return a string with receive buffer contents, encoded in hexadecimal
On failure, throws an exception or returns a negative error code.
"""
# buff
# bufflen
# mult
# endpos
# ofs
# res
if nBytes > 65535:
nBytes = 65535
# // may throw an exception
buff = self._download("rxdata.bin?pos=" + str(int(self._rxptr)) + "&len=" + str(int(nBytes)))
bufflen = len(buff) - 1
endpos = 0
mult = 1
while (bufflen > 0) and (YGetByte(buff, bufflen) != 64):
endpos = endpos + mult * (YGetByte(buff, bufflen) - 48)
mult = mult * 10
bufflen = bufflen - 1
self._rxptr = endpos
res = ""
ofs = 0
while ofs + 3 < bufflen:
res = "" + res + "" + ("%02X" % YGetByte(buff, ofs)) + "" + ("%02X" % YGetByte(buff, ofs + 1)) + "" + ("%02X" % YGetByte(buff, ofs + 2)) + "" + ("%02X" % YGetByte(buff, ofs + 3))
ofs = ofs + 4
while ofs < bufflen:
res = "" + res + "" + ("%02X" % YGetByte(buff, ofs))
ofs = ofs + 1
return res
def readLine(self):
"""
Reads a single line (or message) from the receive buffer, starting at current stream position.
This function is intended to be used when the serial port is configured for a message protocol,
such as 'Line' mode or MODBUS protocols.
If data at current stream position is not available anymore in the receive buffer,
the function returns the oldest available line and moves the stream position just after.
If no new full line is received, the function returns an empty line.
@return a string with a single line of text
On failure, throws an exception or returns a negative error code.
"""
# url
# msgbin
msgarr = []
# msglen
# res
# // may throw an exception
url = "rxmsg.json?pos=" + str(int(self._rxptr)) + "&len=1&maxw=1"
msgbin = self._download(url)
msgarr = self._json_get_array(msgbin)
msglen = len(msgarr)
if msglen == 0:
return ""
# // last element of array is the new position
msglen = msglen - 1
self._rxptr = int(msgarr[msglen])
if msglen == 0:
return ""
res = self._json_get_string(YString2Byte(msgarr[0]))
return res
def readMessages(self, pattern, maxWait):
"""
Searches for incoming messages in the serial port receive buffer matching a given pattern,
starting at current position. This function will only compare and return printable characters
in the message strings. Binary protocols are handled as hexadecimal strings.
The search returns all messages matching the expression provided as argument in the buffer.
If no matching message is found, the search waits for one up to the specified maximum timeout
(in milliseconds).
@param pattern : a limited regular expression describing the expected message format,
or an empty string if all messages should be returned (no filtering).
When using binary protocols, the format applies to the hexadecimal
representation of the message.
@param maxWait : the maximum number of milliseconds to wait for a message if none is found
in the receive buffer.
@return an array of strings containing the messages found, if any.
Binary messages are converted to hexadecimal representation.
On failure, throws an exception or returns an empty array.
"""
# url
# msgbin
msgarr = []
# msglen
res = []
# idx
# // may throw an exception
url = "rxmsg.json?pos=" + str(int(self._rxptr)) + "&maxw=" + str(int(maxWait)) + "&pat=" + pattern
msgbin = self._download(url)
msgarr = self._json_get_array(msgbin)
msglen = len(msgarr)
if msglen == 0:
return res
# // last element of array is the new position
msglen = msglen - 1
self._rxptr = int(msgarr[msglen])
idx = 0
while idx < msglen:
res.append(self._json_get_string(YString2Byte(msgarr[idx])))
idx = idx + 1
return res
def read_seek(self, absPos):
"""
Changes the current internal stream position to the specified value. This function
does not affect the device, it only changes the value stored in the YSerialPort object
for the next read operations.
@param absPos : the absolute position index for next read operations.
@return nothing.
"""
self._rxptr = absPos
return YAPI.SUCCESS
def read_tell(self):
"""
Returns the current absolute stream position pointer of the YSerialPort object.
@return the absolute position index for next read operations.
"""
return self._rxptr
def read_avail(self):
"""
Returns the number of bytes available to read in the input buffer starting from the
current absolute stream position pointer of the YSerialPort object.
@return the number of bytes available to read
"""
# buff
# bufflen
# res
# // may throw an exception
buff = self._download("rxcnt.bin?pos=" + str(int(self._rxptr)))
bufflen = len(buff) - 1
while (bufflen > 0) and (YGetByte(buff, bufflen) != 64):
bufflen = bufflen - 1
res = int((YByte2String(buff))[0: 0 + bufflen])
return res
def queryLine(self, query, maxWait):
"""
Sends a text line query to the serial port, and reads the reply, if any.
This function is intended to be used when the serial port is configured for 'Line' protocol.
@param query : the line query to send (without CR/LF)
@param maxWait : the maximum number of milliseconds to wait for a reply.
@return the next text line received after sending the text query, as a string.
Additional lines can be obtained by calling readLine or readMessages.
On failure, throws an exception or returns an empty array.
"""
# url
# msgbin
msgarr = []
# msglen
# res
# // may throw an exception
url = "rxmsg.json?len=1&maxw=" + str(int(maxWait)) + "&cmd=!" + query
msgbin = self._download(url)
msgarr = self._json_get_array(msgbin)
msglen = len(msgarr)
if msglen == 0:
return ""
# // last element of array is the new position
msglen = msglen - 1
self._rxptr = int(msgarr[msglen])
if msglen == 0:
return ""
res = self._json_get_string(YString2Byte(msgarr[0]))
return res
def queryMODBUS(self, subordinateNo, pduBytes):
"""
Sends a message to a specified MODBUS subordinate connected to the serial port, and reads the
reply, if any. The message is the PDU, provided as a vector of bytes.
@param subordinateNo : the address of the subordinate MODBUS device to query
@param pduBytes : the message to send (PDU), as a vector of bytes. The first byte of the
PDU is the MODBUS function code.
@return the received reply, as a vector of bytes.
On failure, throws an exception or returns an empty array (or a MODBUS error reply).
"""
# funCode
# nib
# i
# cmd
# url
# pat
# msgs
reps = []
# rep
res = []
# replen
# hexb
funCode = pduBytes[0]
nib = ((funCode) >> (4))
pat = "" + ("%02X" % subordinateNo) + "[" + ("%X" % nib) + "" + ("%X" % (nib+8)) + "]" + ("%X" % ((funCode) & (15))) + ".*"