forked from zephyrproject-rtos/hal_nxp
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Neil Chen <[email protected]>
- Loading branch information
1 parent
8e03f91
commit 9fcaf08
Showing
6 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#Description: device_CMSIS; user_visible: False | ||
include_guard(GLOBAL) | ||
message("device_CMSIS component is included.") | ||
|
||
target_sources(${MCUX_SDK_PROJECT_NAME} PRIVATE | ||
) | ||
|
||
target_include_directories(${MCUX_SDK_PROJECT_NAME} PUBLIC | ||
${CMAKE_CURRENT_LIST_DIR}/. | ||
) | ||
|
||
|
||
include(CMSIS_Include_core_cm) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#Description: device_system; user_visible: False | ||
include_guard(GLOBAL) | ||
message("device_system component is included.") | ||
|
||
target_sources(${MCUX_SDK_PROJECT_NAME} PRIVATE | ||
${CMAKE_CURRENT_LIST_DIR}/system_MCXA156.c | ||
) | ||
|
||
target_include_directories(${MCUX_SDK_PROJECT_NAME} PUBLIC | ||
${CMAKE_CURRENT_LIST_DIR}/. | ||
) | ||
|
||
|
||
include(device_CMSIS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#Description: Clock Driver; user_visible: True | ||
include_guard(GLOBAL) | ||
message("driver_clock component is included.") | ||
|
||
target_sources(${MCUX_SDK_PROJECT_NAME} PRIVATE | ||
${CMAKE_CURRENT_LIST_DIR}/fsl_clock.c | ||
) | ||
|
||
target_include_directories(${MCUX_SDK_PROJECT_NAME} PUBLIC | ||
${CMAKE_CURRENT_LIST_DIR}/. | ||
) | ||
|
||
|
||
include(driver_mcx_spc) |
15 changes: 15 additions & 0 deletions
15
mcux/mcux-sdk/devices/MCXA156/drivers/driver_edma_soc.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#Description: EDMA SOC Driver; user_visible: True | ||
include_guard(GLOBAL) | ||
message("driver_edma_soc component is included.") | ||
|
||
target_sources(${MCUX_SDK_PROJECT_NAME} PRIVATE | ||
${CMAKE_CURRENT_LIST_DIR}/fsl_edma_soc.c | ||
) | ||
|
||
target_include_directories(${MCUX_SDK_PROJECT_NAME} PUBLIC | ||
${CMAKE_CURRENT_LIST_DIR}/. | ||
) | ||
|
||
|
||
include(driver_common) | ||
include(driver_edma4) |
13 changes: 13 additions & 0 deletions
13
mcux/mcux-sdk/devices/MCXA156/drivers/driver_inputmux_connections.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#Description: Inputmux_connections Driver; user_visible: True | ||
include_guard(GLOBAL) | ||
message("driver_inputmux_connections component is included.") | ||
|
||
target_sources(${MCUX_SDK_PROJECT_NAME} PRIVATE | ||
) | ||
|
||
target_include_directories(${MCUX_SDK_PROJECT_NAME} PUBLIC | ||
${CMAKE_CURRENT_LIST_DIR}/. | ||
) | ||
|
||
|
||
include(driver_common) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#Description: Reset Driver; user_visible: True | ||
include_guard(GLOBAL) | ||
message("driver_reset component is included.") | ||
|
||
target_sources(${MCUX_SDK_PROJECT_NAME} PRIVATE | ||
${CMAKE_CURRENT_LIST_DIR}/fsl_reset.c | ||
) | ||
|
||
target_include_directories(${MCUX_SDK_PROJECT_NAME} PUBLIC | ||
${CMAKE_CURRENT_LIST_DIR}/. | ||
) | ||
|
||
|
||
include(driver_common) |