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

Function __set_BASEPRI

bsp/efm32/Libraries/CMSIS/Include/core_cmFunc.h:224–228  ·  view source on GitHub ↗

\brief Set Base Priority This function assigns the given value to the Base Priority register. \param [in] basePri Base Priority value to set */

Source from the content-addressed store, hash-verified

222 \param [in] basePri Base Priority value to set
223 */
224__STATIC_INLINE void __set_BASEPRI(uint32_t basePri)
225{
226 register uint32_t __regBasePri __ASM("basepri");
227 __regBasePri = (basePri & 0xff);
228}
229
230
231/** \brief Get Fault Mask

Callers 1

NVIC_ConfigurationFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected