simbit18 commented on PR #16241: URL: https://github.com/apache/nuttx/pull/16241#issuecomment-2842271734
here is different Make.defs https://github.com/apache/nuttx/blob/ed0c18c66cb77050528b97f18c68df83f0d1e0d6/arch/arm/src/stm32f7/Make.defs#L36 ifneq ($(CONFIG_SCHED_TICKLESS),y) CHIP_CSRCS += stm32_timerisr.c else CHIP_CSRCS += stm32_tickless.c endif CMakeLists.txt https://github.com/apache/nuttx/blob/ed0c18c66cb77050528b97f18c68df83f0d1e0d6/arch/arm/src/stm32f7/CMakeLists.txt#L40 if(CONFIG_STM32F7_TICKLESS_TIMER) list(APPEND SRCS stm32_tickless.c) else() list(APPEND SRCS stm32_timerisr.c) endif() -- 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: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org