mirror of
https://github.com/uhi22/pyPLC.git
synced 2024-11-20 01:13:58 +00:00
fix: clear rxData in case of testsuite notification
This commit is contained in:
parent
6c1703b1a9
commit
fe0610a472
1 changed files with 1 additions and 0 deletions
|
@ -236,6 +236,7 @@ class fsmPev():
|
|||
if ((self.rxData[0]!=0x01) or (self.rxData[1]!=0xFE)):
|
||||
# it is no EXI data. Print it to log, it could be a TESTSUITE notification.
|
||||
self.addToTrace("TESTSUITE notification. Seems we are running a test case. TTTTTTTTTTTTTTTTTTTTTTT")
|
||||
self.rxData = []
|
||||
return
|
||||
exidata = removeV2GTPHeader(self.rxData)
|
||||
self.rxData = []
|
||||
|
|
Loading…
Reference in a new issue