MCPcopy Create free account
hub / github.com/EmbeddedRPC/erpc / BinaryTestServiceHandler

Class BinaryTestServiceHandler

test/python_impl_tests/test_binary/test_binary.py:39–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37# Handlers
38###############################################################################
39class BinaryTestServiceHandler(IBinary):
40 def sendBinary(self, a):
41 # print(a)
42 return
43
44 def test_binary_allDirection(self, a, b, e):
45 e.value = bytearray(b'')
46 for x in range(5):
47 e.value.append(a[x] * b[x])
48 return
49
50 def test_binary_allDirectionLength(self, a, b, d):
51 return
52
53
54###############################################################################

Callers 1

servicesFunction · 0.85

Calls

no outgoing calls

Tested by 1

servicesFunction · 0.68