1.11.4.2 1.13.3.2 1.14.4.2 1.15.4.2 CLC_Enable Function
C
/* x = CLC instance number */
void CLC_Enable(bool enable)
Summary
Enable/Disable CLC module.
Description
This function enables or disables the CLC module.
Precondition
CLC_Initialize() must have been called.
Parameters
Param | Description |
---|---|
enable | Boolean value indicating the operation to perform. To enable CLC, this argument should be "true", else "false" |
Returns
None.
Example
CLC1_Enable(true); .... .... .... CLC1_Enable(false);
Remarks
None.