only: docs
This commit is contained in:
parent
c4f58ad3d0
commit
02cd55bb8f
|
@ -57,7 +57,10 @@ public:
|
|||
*/
|
||||
void setShortValue(uint16_t value, size_t offset);
|
||||
|
||||
// Same as above but big endian
|
||||
/**
|
||||
Same as above but big endian
|
||||
* for instance DBC 8|16@0
|
||||
*/
|
||||
void setShortValueMsb(uint16_t value, size_t offset);
|
||||
|
||||
/**
|
||||
|
|
|
@ -130,4 +130,7 @@ constexpr remove_reference_t<_Ty>&& move(_Ty&& _Arg) noexcept {
|
|||
}
|
||||
|
||||
int getBitRangeLsb(const uint8_t data[], int bitIndex, int bitWidth);
|
||||
/**
|
||||
for instance DBC 8|16@0
|
||||
*/
|
||||
int getBitRangeMsb(const uint8_t data[], int bitIndex, int bitWidth);
|
||||
|
|
Loading…
Reference in New Issue