MCPcopy Create free account
hub / github.com/Duet3D/RepRapFirmware / SetUnsigned

Method SetUnsigned

src/ObjectModel/ObjectModel.h:155–155  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153 void SetDateTime(time_t t) noexcept { Release(); type = (uint32_t)TypeCode::DateTime_tc; Set56BitValue(t); }
154
155 void SetUnsigned(uint32_t u) noexcept { Release(); type = (uint32_t)TypeCode::Uint32; uVal = u; }
156 void SetDuration(uint32_t u) noexcept { Release(); type = (uint32_t)TypeCode::Duration; uVal = u; }
157
158 // Store a 56-bit value

Callers 3

THROWSFunction · 0.80
ParseNumberMethod · 0.80
ValueMenuItem.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected