File tree Expand file tree Collapse file tree 6 files changed +503
-241
lines changed Expand file tree Collapse file tree 6 files changed +503
-241
lines changed Original file line number Diff line number Diff line change 3
3
# SPDX-License-Identifier: BSD-3-Clause
4
4
5
5
if (CONFIG_MCUX_COMPONENT_driver.dmamux )
6
- mcux_component_version (2.1.2 )
6
+ mcux_component_version (2.1.3 )
7
7
8
8
mcux_add_source (SOURCES fsl_dmamux.h fsl_dmamux.c )
9
9
Original file line number Diff line number Diff line change 21
21
* Prototypes
22
22
******************************************************************************/
23
23
24
+ #if !(defined(FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL ) && FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL )
24
25
/*!
25
26
* @brief Get instance number for DMAMUX.
26
27
*
27
28
* @param base DMAMUX peripheral base address.
28
29
*/
29
30
static uint32_t DMAMUX_GetInstance (DMAMUX_Type * base );
31
+ #endif /* FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL */
30
32
31
33
/*******************************************************************************
32
34
* Variables
33
35
******************************************************************************/
34
36
37
+ #if !(defined(FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL ) && FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL )
35
38
/*! @brief Array to map DMAMUX instance number to base pointer. */
36
39
static DMAMUX_Type * const s_dmamuxBases [] = DMAMUX_BASE_PTRS ;
37
40
38
- #if !(defined(FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL ) && FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL )
39
41
/*! @brief Array to map DMAMUX instance number to clock name. */
40
42
static const clock_ip_name_t s_dmamuxClockName [] = DMAMUX_CLOCKS ;
41
43
#endif /* FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL */
42
44
43
45
/*******************************************************************************
44
46
* Code
45
47
******************************************************************************/
48
+ #if !(defined(FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL ) && FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL )
46
49
static uint32_t DMAMUX_GetInstance (DMAMUX_Type * base )
47
50
{
48
51
uint32_t instance ;
@@ -60,6 +63,7 @@ static uint32_t DMAMUX_GetInstance(DMAMUX_Type *base)
60
63
61
64
return instance ;
62
65
}
66
+ #endif /* FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL */
63
67
64
68
/*!
65
69
* brief Initializes the DMAMUX peripheral.
Original file line number Diff line number Diff line change 23
23
/*! @name Driver version */
24
24
/*! @{ */
25
25
/*! @brief DMAMUX driver version 2.1.1. */
26
- #define FSL_DMAMUX_DRIVER_VERSION (MAKE_VERSION(2, 1, 2 ))
26
+ #define FSL_DMAMUX_DRIVER_VERSION (MAKE_VERSION(2, 1, 3 ))
27
27
/*! @} */
28
28
29
29
#if (defined(FSL_FEATURE_DMAMUX_CHANNEL_NEEDS_ENDIAN_CONVERT ) && FSL_FEATURE_DMAMUX_CHANNEL_NEEDS_ENDIAN_CONVERT )
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ if(CONFIG_MCUX_COMPONENT_driver.flexcan_edma)
12
12
endif ()
13
13
14
14
if (CONFIG_MCUX_COMPONENT_driver.flexcan )
15
- mcux_component_version (2.14.1 )
15
+ mcux_component_version (2.14.3 )
16
16
17
17
mcux_add_source (SOURCES fsl_flexcan.h fsl_flexcan.c )
18
18
You can’t perform that action at this time.
0 commit comments