Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/EmbeddedRPC/erpc
/ write_uint32
Method
write_uint32
erpc_python/erpc/basic_codec.py:55–56 ·
view source on GitHub ↗
(self, value)
Source
from the content-addressed store, hash-verified
53
self._write(
'<H'
, value)
54
55
def
write_uint32(self, value):
56
self._write(
'<I'
, value)
57
58
def
write_uint64(self, value):
59
self._write(
'<Q'
, value)
Callers
4
start_write_message
Method · 0.95
write_binary
Method · 0.95
start_write_list
Method · 0.95
start_write_union
Method · 0.95
Calls
1
_write
Method · 0.95
Tested by
no test coverage detected