Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions mcux/mcux-sdk-ng/devices/MCX/MCXE/MCXE247/drivers/fsl_clock.h
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,18 @@ extern volatile uint32_t g_xtal0Freq;
kCLOCK_Mpu \
}

/*! @brief Clock ip name array for EIM. */
#define EIM_CLOCKS \
{ \
kCLOCK_Eim \
}

/*! @brief Clock ip name array for ERM. */
#define ERM_CLOCKS \
{ \
kCLOCK_Erm \
}

/*!
* @brief LPO clock frequency.
*/
Expand Down
4 changes: 2 additions & 2 deletions mcux/mcux-sdk-ng/drivers/eim/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# SPDX-License-Identifier: BSD-3-Clause

if(CONFIG_MCUX_COMPONENT_driver.eim)
mcux_component_version(2.0.2)
mcux_component_version(2.1.0)

mcux_add_source(SOURCES fsl_eim.c fsl_eim.h)
mcux_add_source(SOURCES fsl_eim.c fsl_eim.h eim_channel_word.h)

mcux_add_include(INCLUDES .)

Expand Down
Loading