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

Function Ft_setBit32

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

* @name: Ft_setBit32 * @msg: * @in param {FT_INUINTPTR} addr * @in param {FT_INu32} offset * @in param {FT_INu32} value */

Source from the content-addressed store, hash-verified

132 * @in param {FT_INu32} value
133 */
134 static INLINE void Ft_setBit32(FT_IN UINTPTR addr, FT_IN u32 value)
135 {
136 u32 lastValue;
137 lastValue = Ft_in32(addr);
138 lastValue |= value;
139 Ft_out32(addr, lastValue);
140 }
141
142 /**
143 * @name: Ft_clearBit32

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