Home
last modified time | relevance | path

Searched refs:u32IntMask (Results 1 – 7 of 7) sorted by relevance

/hal_nuvoton-latest/m48x/StdDriver/inc/
Dsdh.h109 #define SDH_ENABLE_INT(sdh, u32IntMask) ((sdh)->INTEN |= (u32IntMask)) argument
122 #define SDH_DISABLE_INT(sdh, u32IntMask) ((sdh)->INTEN &= ~(u32IntMask)) argument
140 #define SDH_GET_INT_FLAG(sdh, u32IntMask) (((sdh)->INTSTS & (u32IntMask))?1:0) argument
155 #define SDH_CLR_INT_FLAG(sdh, u32IntMask) ((sdh)->INTSTS = (u32IntMask)) argument
Dccap.h125 #define CCAP_CLR_INT_FLAG(u32IntMask) (CCAP->INT |=u32IntMask) argument
141 void CCAP_EnableInt(uint32_t u32IntMask);
142 void CCAP_DisableInt(uint32_t u32IntMask);
/hal_nuvoton-latest/m46x/StdDriver/inc/
Dsdh.h119 #define SDH_ENABLE_INT(sdh, u32IntMask) ((sdh)->INTEN |= (u32IntMask)) argument
132 #define SDH_DISABLE_INT(sdh, u32IntMask) ((sdh)->INTEN &= ~(u32IntMask)) argument
150 #define SDH_GET_INT_FLAG(sdh, u32IntMask) (((sdh)->INTSTS & (u32IntMask))?1:0) argument
165 #define SDH_CLR_INT_FLAG(sdh, u32IntMask) ((sdh)->INTSTS = (u32IntMask)) argument
Dccap.h119 #define CCAP_CLR_INT_FLAG(u32IntMask) (CCAP->INT |= (u32IntMask)) argument
138 void CCAP_EnableInt(uint32_t u32IntMask);
139 void CCAP_DisableInt(uint32_t u32IntMask);
/hal_nuvoton-latest/m48x/StdDriver/src/
Dccap.c129 void CCAP_EnableInt(uint32_t u32IntMask) in CCAP_EnableInt() argument
132 | u32IntMask; in CCAP_EnableInt()
150 void CCAP_DisableInt(uint32_t u32IntMask) in CCAP_DisableInt() argument
152 CCAP->INT = (CCAP->INT & ~(u32IntMask) ) ; in CCAP_DisableInt()
Dcan.c65 uint32_t u32IntMask; in LockIF() local
83 u32IntMask = tCAN->CON & (CAN_CON_IE_Msk | CAN_CON_SIE_Msk | CAN_CON_EIE_Msk); in LockIF()
125 tCAN->CON |= u32IntMask; in LockIF()
168 uint32_t u32IntMask; in ReleaseIF() local
190 u32IntMask = tCAN->CON & (CAN_CON_IE_Msk | CAN_CON_SIE_Msk | CAN_CON_EIE_Msk); in ReleaseIF()
196 tCAN->CON |= u32IntMask; in ReleaseIF()
/hal_nuvoton-latest/m46x/StdDriver/src/
Dccap.c122 void CCAP_EnableInt(uint32_t u32IntMask) in CCAP_EnableInt() argument
125 | u32IntMask; in CCAP_EnableInt()
141 void CCAP_DisableInt(uint32_t u32IntMask) in CCAP_DisableInt() argument
143 CCAP->INT = (CCAP->INT & ~(u32IntMask)); in CCAP_DisableInt()