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

Method read

erpc_c/infra/erpc_basic_codec.cpp:197–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

195}
196
197void BasicCodec::read(bool &value)
198{
199 uint8_t v = 0;
200
201 readData(sizeof(v), &v);
202 if (isStatusOk())
203 {
204 value = (bool)v;
205 }
206}
207
208void BasicCodec::read(int8_t &value)
209{

Callers 15

readDataMethod · 0.45
_contents_eqMethod · 0.45
setup.pyFile · 0.45
_base_receiveMethod · 0.45
erpcMatrixMultiplyMethod · 0.45
getNumberFromCore1Method · 0.45
increaseNumberMethod · 0.45
increaseNumber_shimMethod · 0.45
clientMethod · 0.45

Calls

no outgoing calls

Tested by 1

_test_fileMethod · 0.36