/
DEF_BIT_FIELD_ENC()
DEF_BIT_FIELD_ENC()
Encodes given 'field_val
' at position given by mask 'field_mask
'.
Files
lib_def.h
Prototype
DEF_BIT_FIELD_ENC(field_val, field_mask);
Arguments
field_val
Value to encode.
field_mask
Mask of field to read.
Returned Value
Field value, masked and left-shifted to field position.
Required Configuration
None.
Notes / Warnings
- '
field_mask
' argument must contain a mask with contiguous set bits. - '
field_val
' & 'field_mask
' SHOULD be unsigned integers.
, multiple selections available,
Related content
DEF_BIT_FIELD_RD()
DEF_BIT_FIELD_RD()
More like this
DEF_BIT_FIELD_WR()
DEF_BIT_FIELD_WR()
More like this
DEF_BIT_FIELD_xx()
DEF_BIT_FIELD_xx()
More like this
DEF_BITxx()
DEF_BITxx()
More like this
DEF_BIT_TOGGLE()
DEF_BIT_TOGGLE()
More like this
DEF_BIT_IS_SET()
DEF_BIT_IS_SET()
More like this