This is an automated email from the ASF dual-hosted git repository.
linguini pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new ebbb85e0f25 drivers/usbmisc: Aligned Cmake with Make
ebbb85e0f25 is described below
commit ebbb85e0f25a7a8aa8f3f41d675fe01438f39d08
Author: simbit18 <[email protected]>
AuthorDate: Thu Oct 9 19:17:41 2025 +0200
drivers/usbmisc: Aligned Cmake with Make
Add:
- ST standalone USB PD sink controller #14895
Signed-off-by: simbit18 <[email protected]>
---
drivers/usbmisc/CMakeLists.txt | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/usbmisc/CMakeLists.txt b/drivers/usbmisc/CMakeLists.txt
index 936a9b8f21c..afbab301c20 100644
--- a/drivers/usbmisc/CMakeLists.txt
+++ b/drivers/usbmisc/CMakeLists.txt
@@ -37,5 +37,9 @@ if(CONFIG_USBMISC)
list(APPEND SRCS fusb303.c)
endif()
+ if(CONFIG_STUSB4500)
+ list(APPEND SRCS stusb4500.c)
+ endif()
+
target_sources(drivers PRIVATE ${SRCS})
endif()