1.1.4.19 DRV_METROLOGY_SetControl Function
C
void DRV_METROLOGY_SetControl (DRV_METROLOGY_REGS_CONTROL * pControl);SummaryEstablishes the content of all control registers at once.
DescriptionOverwrite the value of the every control register in the shared memory at once.
ParametersPointer to data of the new control registers to overwrite the old ones.
ReturnsNone.
ExamplevoidAPP_METROLOGY_SetControlByDefault(void)
{
DRV_METROLOGY_REGS_CONTROL *pSrc;
pSrc = DRV_METROLOGY_GetControlByDefault();
DRV_METROLOGY_SetControl(pSrc);
}RemarksNone.
