erpc_interface/erpc_PLCObject/interface.py
changeset 3884 34da877021d5
child 3885 22a009561502
equal deleted inserted replaced
3883:a6e7dd8bac36 3884:34da877021d5
       
     1 #
       
     2 # Generated by erpcgen 1.11.0 on Wed Jan 17 21:59:20 2024.
       
     3 #
       
     4 # AUTOGENERATED - DO NOT EDIT
       
     5 #
       
     6 
       
     7 # Abstract base class for BeremizPLCObjectService
       
     8 class IBeremizPLCObjectService(object):
       
     9     SERVICE_ID = 1
       
    10     APPENDCHUNKTOBLOB_ID = 1
       
    11     GETLOGMESSAGE_ID = 2
       
    12     GETPLCID_ID = 3
       
    13     GETPLCSTATUS_ID = 4
       
    14     GETTRACEVARIABLES_ID = 5
       
    15     MATCHMD5_ID = 6
       
    16     NEWPLC_ID = 7
       
    17     PURGEBLOBS_ID = 8
       
    18     REPAIRPLC_ID = 9
       
    19     RESETLOGCOUNT_ID = 10
       
    20     SEEDBLOB_ID = 11
       
    21     SETTRACEVARIABLESLIST_ID = 12
       
    22     STARTPLC_ID = 13
       
    23     STOPPLC_ID = 14
       
    24 
       
    25     def AppendChunkToBlob(self, data, blobID, newBlobID):
       
    26         raise NotImplementedError()
       
    27 
       
    28     def GetLogMessage(self, level, msgID, message):
       
    29         raise NotImplementedError()
       
    30 
       
    31     def GetPLCID(self, plcID):
       
    32         raise NotImplementedError()
       
    33 
       
    34     def GetPLCstatus(self, status):
       
    35         raise NotImplementedError()
       
    36 
       
    37     def GetTraceVariables(self, debugToken, traces):
       
    38         raise NotImplementedError()
       
    39 
       
    40     def MatchMD5(self, MD5, match):
       
    41         raise NotImplementedError()
       
    42 
       
    43     def NewPLC(self, md5sum, plcObjectBlobID, extrafiles, success):
       
    44         raise NotImplementedError()
       
    45 
       
    46     def PurgeBlobs(self):
       
    47         raise NotImplementedError()
       
    48 
       
    49     def RepairPLC(self):
       
    50         raise NotImplementedError()
       
    51 
       
    52     def ResetLogCount(self):
       
    53         raise NotImplementedError()
       
    54 
       
    55     def SeedBlob(self, seed, blobID):
       
    56         raise NotImplementedError()
       
    57 
       
    58     def SetTraceVariablesList(self, orders):
       
    59         raise NotImplementedError()
       
    60 
       
    61     def StartPLC(self):
       
    62         raise NotImplementedError()
       
    63 
       
    64     def StopPLC(self):
       
    65         raise NotImplementedError()
       
    66 
       
    67