Home
last modified time | relevance | path

Searched refs:Remap (Results 1 – 25 of 73) sorted by relevance

123

/hal_stm32-latest/stm32cube/stm32f3xx/drivers/include/
Dstm32f3xx_ll_system.h540 __STATIC_INLINE void LL_SYSCFG_SetRemapDMA_SPI(uint32_t Remap) in LL_SYSCFG_SetRemapDMA_SPI() argument
542 MODIFY_REG(SYSCFG->CFGR3, (Remap >> 16U), (Remap & 0x0000FFFF)); in LL_SYSCFG_SetRemapDMA_SPI()
560 __STATIC_INLINE void LL_SYSCFG_SetRemapDMA_I2C(uint32_t Remap) in LL_SYSCFG_SetRemapDMA_I2C() argument
562 MODIFY_REG(SYSCFG->CFGR3, (Remap >> 16U), (Remap & 0x0000FFFF)); in LL_SYSCFG_SetRemapDMA_I2C()
582 __STATIC_INLINE void LL_SYSCFG_SetRemapDMA_ADC(uint32_t Remap) in LL_SYSCFG_SetRemapDMA_ADC() argument
584 __IO uint32_t *reg = (__IO uint32_t *)(uint32_t)(SYSCFG_BASE + (Remap >> 24U)); in LL_SYSCFG_SetRemapDMA_ADC()
585 MODIFY_REG(*reg, (Remap & 0x00FF0000U) >> 8U, (Remap & 0x0000FFFFU)); in LL_SYSCFG_SetRemapDMA_ADC()
606 __STATIC_INLINE void LL_SYSCFG_SetRemapDMA_DAC(uint32_t Remap) in LL_SYSCFG_SetRemapDMA_DAC() argument
608 MODIFY_REG(SYSCFG->CFGR1, (Remap & 0x00FF0000U) >> 8U, (Remap & 0x0000FF00U)); in LL_SYSCFG_SetRemapDMA_DAC()
628 __STATIC_INLINE void LL_SYSCFG_SetRemapDMA_TIM(uint32_t Remap) in LL_SYSCFG_SetRemapDMA_TIM() argument
[all …]
/hal_stm32-latest/stm32cube/stm32f0xx/drivers/include/
Dstm32f0xx_ll_system.h415 __STATIC_INLINE void LL_SYSCFG_SetRemapDMA_USART(uint32_t Remap) in LL_SYSCFG_SetRemapDMA_USART() argument
417 MODIFY_REG(SYSCFG->CFGR1, (Remap & 0x00FF00FFU) << 8U, (Remap & 0xFF00FF00U)); in LL_SYSCFG_SetRemapDMA_USART()
430 __STATIC_INLINE void LL_SYSCFG_SetRemapDMA_SPI(uint32_t Remap) in LL_SYSCFG_SetRemapDMA_SPI() argument
432 MODIFY_REG(SYSCFG->CFGR1, SYSCFG_CFGR1_SPI2_DMA_RMP, Remap); in LL_SYSCFG_SetRemapDMA_SPI()
445 __STATIC_INLINE void LL_SYSCFG_SetRemapDMA_I2C(uint32_t Remap) in LL_SYSCFG_SetRemapDMA_I2C() argument
447 MODIFY_REG(SYSCFG->CFGR1, SYSCFG_CFGR1_I2C1_DMA_RMP, Remap); in LL_SYSCFG_SetRemapDMA_I2C()
460 __STATIC_INLINE void LL_SYSCFG_SetRemapDMA_ADC(uint32_t Remap) in LL_SYSCFG_SetRemapDMA_ADC() argument
462 MODIFY_REG(SYSCFG->CFGR1, SYSCFG_CFGR1_ADC_DMA_RMP, Remap); in LL_SYSCFG_SetRemapDMA_ADC()
493 __STATIC_INLINE void LL_SYSCFG_SetRemapDMA_TIM(uint32_t Remap) in LL_SYSCFG_SetRemapDMA_TIM() argument
495 MODIFY_REG(SYSCFG->CFGR1, (Remap & 0x00FF00FFU) << 8U, (Remap & 0xFF00FF00U)); in LL_SYSCFG_SetRemapDMA_TIM()
Dstm32f0xx_ll_tim.h3065 __STATIC_INLINE void LL_TIM_SetRemap(TIM_TypeDef *TIMx, uint32_t Remap) in LL_TIM_SetRemap() argument
3067 MODIFY_REG(TIMx->OR, (Remap >> TIMx_OR_RMP_SHIFT), (Remap & TIMx_OR_RMP_MASK)); in LL_TIM_SetRemap()
/hal_stm32-latest/stm32cube/stm32l0xx/drivers/src/
Dstm32l0xx_hal_tim_ex.c394 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
398 assert_param(IS_TIM_REMAP(htim->Instance, Remap)); in HAL_TIMEx_RemapConfig()
403 WRITE_REG(htim->Instance->OR, Remap); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32l1xx/drivers/src/
Dstm32l1xx_hal_tim_ex.c194 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
198 assert_param(IS_TIM_REMAP(htim->Instance, Remap)); in HAL_TIMEx_RemapConfig()
203 WRITE_REG(htim->Instance->OR, Remap); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32f4xx/drivers/src/
Dstm32f4xx_hal_tim_ex.c2091 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2094 assert_param(IS_TIM_REMAP(htim->Instance, Remap)); in HAL_TIMEx_RemapConfig()
2099 if ((Remap & LPTIM_REMAP_MASK) == LPTIM_REMAP_MASK) in HAL_TIMEx_RemapConfig()
2105 Remap & ~(LPTIM_REMAP_MASK)); in HAL_TIMEx_RemapConfig()
2110 WRITE_REG(htim->Instance->OR, Remap); in HAL_TIMEx_RemapConfig()
2114 WRITE_REG(htim->Instance->OR, Remap); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32f4xx/drivers/include/
Dstm32f4xx_ll_tim.h3152 __STATIC_INLINE void LL_TIM_SetRemap(TIM_TypeDef *TIMx, uint32_t Remap) in LL_TIM_SetRemap() argument
3155 if ((Remap & LL_TIM_LPTIM_REMAP_MASK) == LL_TIM_LPTIM_REMAP_MASK) in LL_TIM_SetRemap()
3161 Remap & ~(LL_TIM_LPTIM_REMAP_MASK)); in LL_TIM_SetRemap()
3165 MODIFY_REG(TIMx->OR, (Remap >> TIMx_OR_RMP_SHIFT), (Remap & TIMx_OR_RMP_MASK)); in LL_TIM_SetRemap()
3168 MODIFY_REG(TIMx->OR, (Remap >> TIMx_OR_RMP_SHIFT), (Remap & TIMx_OR_RMP_MASK)); in LL_TIM_SetRemap()
/hal_stm32-latest/stm32cube/stm32wbxx/drivers/src/
Dstm32wbxx_hal_tim_ex.c2291 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2297 assert_param(IS_TIM_REMAP(htim->Instance, Remap)); in HAL_TIMEx_RemapConfig()
2310 if ((Remap & TIM1_AF1_ETRSEL) != (uint32_t)RESET) in HAL_TIMEx_RemapConfig()
2313 MODIFY_REG(tmpaf1, TIM1_AF1_ETRSEL, (Remap & TIM1_AF1_ETRSEL)); in HAL_TIMEx_RemapConfig()
2326 MODIFY_REG(tmpor, TIM_GET_OR_MASK(htim->Instance), (Remap & (~TIM1_AF1_ETRSEL))); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32wlxx/drivers/src/
Dstm32wlxx_hal_tim_ex.c2295 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2301 assert_param(IS_TIM_REMAP(htim->Instance, Remap)); in HAL_TIMEx_RemapConfig()
2314 if ((Remap & TIM1_AF1_ETRSEL) != (uint32_t)RESET) in HAL_TIMEx_RemapConfig()
2317 MODIFY_REG(tmpaf1, TIM1_AF1_ETRSEL, (Remap & TIM1_AF1_ETRSEL)); in HAL_TIMEx_RemapConfig()
2330 MODIFY_REG(tmpor, TIM_GET_OR1_MASK(htim->Instance), (Remap & (~TIM1_AF1_ETRSEL))); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32l4xx/drivers/src/
Dstm32l4xx_hal_tim_ex.c2447 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2454 assert_param(IS_TIM_REMAP(Remap)); in HAL_TIMEx_RemapConfig()
2463 tmpor2 |= (Remap & TIM1_OR2_ETRSEL_Msk); in HAL_TIMEx_RemapConfig()
2470 tmpor1 = Remap; in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32l5xx/drivers/src/
Dstm32l5xx_hal_tim_ex.c2317 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2323 assert_param(IS_TIM_REMAP(htim->Instance, Remap)); in HAL_TIMEx_RemapConfig()
2332 tmpor2 |= (Remap & TIM1_OR2_ETRSEL_Msk); in HAL_TIMEx_RemapConfig()
2339 tmpor1 = Remap; in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32wb0x/drivers/src/
Dstm32wb0x_hal_tim_ex.c1539 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
1543 assert_param(IS_TIM_REMAP(htim->Instance, Remap)); in HAL_TIMEx_RemapConfig()
1548 WRITE_REG(htim->Instance->OR1, Remap); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32f2xx/drivers/src/
Dstm32f2xx_hal_tim_ex.c2077 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2081 assert_param(IS_TIM_REMAP(htim->Instance, Remap)); in HAL_TIMEx_RemapConfig()
2086 WRITE_REG(htim->Instance->OR, Remap); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32f0xx/drivers/src/
Dstm32f0xx_hal_tim_ex.c2068 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2072 assert_param(IS_TIM_REMAP(htim->Instance, Remap)); in HAL_TIMEx_RemapConfig()
2077 WRITE_REG(htim->Instance->OR, Remap); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32l0xx/drivers/include/
Dstm32l0xx_ll_tim.h2550 __STATIC_INLINE void LL_TIM_SetRemap(TIM_TypeDef *TIMx, uint32_t Remap) in LL_TIM_SetRemap() argument
2552 MODIFY_REG(TIMx->OR, (Remap >> TIMx_OR_RMP_SHIFT), (Remap & TIMx_OR_RMP_MASK)); in LL_TIM_SetRemap()
/hal_stm32-latest/stm32cube/stm32f3xx/drivers/src/
Dstm32f3xx_hal_tim_ex.c2177 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2181 assert_param(IS_TIM_REMAP(htim->Instance, Remap)); in HAL_TIMEx_RemapConfig()
2186 WRITE_REG(htim->Instance->OR, Remap); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32f7xx/drivers/src/
Dstm32f7xx_hal_tim_ex.c2231 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2235 assert_param(IS_TIM_REMAP(Remap)); in HAL_TIMEx_RemapConfig()
2240 htim->Instance->OR = Remap; in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32l1xx/drivers/include/
Dstm32l1xx_ll_tim.h2559 __STATIC_INLINE void LL_TIM_SetRemap(TIM_TypeDef *TIMx, uint32_t Remap) in LL_TIM_SetRemap() argument
2561 MODIFY_REG(TIMx->OR, (Remap >> TIMx_OR_RMP_SHIFT), (Remap & TIMx_OR_RMP_MASK)); in LL_TIM_SetRemap()
Dstm32l1xx_hal_tim_ex.h156 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap);
/hal_stm32-latest/stm32cube/stm32u0xx/drivers/src/
Dstm32u0xx_hal_tim_ex.c2245 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2249 assert_param(IS_TIM_REMAP(Remap)); in HAL_TIMEx_RemapConfig()
2253 MODIFY_REG(htim->Instance->AF1, TIM_AF1_ETRSEL_Msk, Remap); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32c0xx/drivers/src/
Dstm32c0xx_hal_tim_ex.c2251 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2255 assert_param(IS_TIM_REMAP(Remap)); in HAL_TIMEx_RemapConfig()
2259 MODIFY_REG(htim->Instance->AF1, TIM_AF1_ETRSEL_Msk, Remap); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/src/
Dstm32h7xx_hal_tim_ex.c2321 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2325 assert_param(IS_TIM_REMAP(Remap)); in HAL_TIMEx_RemapConfig()
2329 MODIFY_REG(htim->Instance->AF1, TIM1_AF1_ETRSEL_Msk, Remap); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32g0xx/drivers/src/
Dstm32g0xx_hal_tim_ex.c2265 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap) in HAL_TIMEx_RemapConfig() argument
2269 assert_param(IS_TIM_REMAP(Remap)); in HAL_TIMEx_RemapConfig()
2273 MODIFY_REG(htim->Instance->AF1, TIM1_AF1_ETRSEL_Msk, Remap); in HAL_TIMEx_RemapConfig()
/hal_stm32-latest/stm32cube/stm32f1xx/drivers/include/
Dstm32f1xx_hal_tim_ex.h204 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap);
/hal_stm32-latest/stm32cube/stm32f2xx/drivers/include/
Dstm32f2xx_ll_tim.h3110 __STATIC_INLINE void LL_TIM_SetRemap(TIM_TypeDef *TIMx, uint32_t Remap) in LL_TIM_SetRemap() argument
3112 MODIFY_REG(TIMx->OR, (Remap >> TIMx_OR_RMP_SHIFT), (Remap & TIMx_OR_RMP_MASK)); in LL_TIM_SetRemap()

123