Use AzureRTOS ThreadX
This commit is contained in:
@ -62,7 +62,9 @@ static const uint8_t LL_DMA_STR_OFFSET_TAB[] =
|
||||
*/
|
||||
|
||||
/* Private macros ------------------------------------------------------------*/
|
||||
|
||||
/** @defgroup DMA_LL_Private_Macros DMA LL Private Macros
|
||||
* @{
|
||||
*/
|
||||
/**
|
||||
* @brief Helper macro to convert DMA Instance DMAx into DMAMUX channel
|
||||
* @note DMAMUX channel 0 to 7 are mapped to DMA1 stream 0 to 7.
|
||||
@ -72,6 +74,9 @@ static const uint8_t LL_DMA_STR_OFFSET_TAB[] =
|
||||
*/
|
||||
#define LL_DMA_INSTANCE_TO_DMAMUX_CHANNEL(__DMA_INSTANCE__) \
|
||||
(((uint32_t)(__DMA_INSTANCE__) == ((uint32_t)DMA1)) ? 0UL : 8UL)
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/* Exported types ------------------------------------------------------------*/
|
||||
#if defined(USE_FULL_LL_DRIVER)
|
||||
@ -3133,7 +3138,7 @@ __STATIC_INLINE void LL_DMA_DisableIT_FE(DMA_TypeDef *DMAx, uint32_t Stream)
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Check if Half transfer interrup is enabled.
|
||||
* @brief Check if Half transfer interrupt is enabled.
|
||||
* @rmtoll CR HTIE LL_DMA_IsEnabledIT_HT
|
||||
* @param DMAx DMAx Instance
|
||||
* @param Stream This parameter can be one of the following values:
|
||||
@ -3177,7 +3182,7 @@ __STATIC_INLINE uint32_t LL_DMA_IsEnabledIT_TE(DMA_TypeDef *DMAx, uint32_t Strea
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Check if Transfer complete interrup is enabled.
|
||||
* @brief Check if Transfer complete interrupt is enabled.
|
||||
* @rmtoll CR TCIE LL_DMA_IsEnabledIT_TC
|
||||
* @param DMAx DMAx Instance
|
||||
* @param Stream This parameter can be one of the following values:
|
||||
@ -3221,7 +3226,7 @@ __STATIC_INLINE uint32_t LL_DMA_IsEnabledIT_DME(DMA_TypeDef *DMAx, uint32_t Stre
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Check if FIFO error interrup is enabled.
|
||||
* @brief Check if FIFO error interrupt is enabled.
|
||||
* @rmtoll FCR FEIE LL_DMA_IsEnabledIT_FE
|
||||
* @param DMAx DMAx Instance
|
||||
* @param Stream This parameter can be one of the following values:
|
||||
|
||||
Reference in New Issue
Block a user