simbit18 commented on code in PR #18785:
URL: https://github.com/apache/nuttx/pull/18785#discussion_r3129814962
##########
arch/arm64/src/imx9/Make.defs:
##########
@@ -56,6 +56,10 @@ ifeq ($(CONFIG_IMX9_FLEXIO_PWM),y)
CHIP_CSRCS += imx9_flexio_pwm.c
endif
+ifeq ($(CONFIG_IMX9_FLEXIO_DSHOT),y)
+ CHIP_CSRCS += imx9_flexio_dshot.c
+endif
Review Comment:
Hi @jlaitine, please align CMake with the Makefile
if(CONFIG_IMX9_FLEXIO_DSHOT)
list(APPEND SRCS imx9_flexio_dshot.c)
endif()
https://github.com/tiiuae/nuttx/blob/864e096b573588f75779425f9e0fb3bd6e54afc0/arch/arm64/src/imx9/CMakeLists.txt#L47
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]