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

Method write_binary

erpc_python/erpc/basic_codec.py:70–72  ·  view source on GitHub ↗
(self, value)

Source from the content-addressed store, hash-verified

68 self.write_binary(value.encode())
69
70 def write_binary(self, value):
71 self.write_uint32(len(value))
72 self._buffer += value
73
74 def start_write_list(self, length):
75 self.write_uint32(length)

Callers 1

write_stringMethod · 0.95

Calls 1

write_uint32Method · 0.95

Tested by

no test coverage detected