MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / Ft_clearBit32

Function Ft_clearBit32

bsp/ft2004/libraries/bsp/standlone/ft_io.h:152–158  ·  view source on GitHub ↗

* @name: Ft_clearBit32 * @msg: * @in param: * @inout param: * @out param: * @return {*} * @param {FT_INUINTPTR} addr * @param {FT_INu32} value */

Source from the content-addressed store, hash-verified

150 * @param {FT_INu32} value
151 */
152 static INLINE void Ft_clearBit32(FT_IN UINTPTR addr, FT_IN u32 value)
153 {
154 u32 lastValue;
155 lastValue = Ft_in32(addr);
156 lastValue &= ~value;
157 Ft_out32(addr, lastValue);
158 }
159
160#ifdef __cplusplus
161}

Callers 4

FSdCtrl_ResetFunction · 0.85
FSdCtrl_ResetDmaFunction · 0.85
FSdCtrl_WriteDataFunction · 0.85
FSdCtrl_ReadDataFunction · 0.85

Calls 2

Ft_in32Function · 0.85
Ft_out32Function · 0.85

Tested by

no test coverage detected