From 7f743a248008e8bf1b0133addaf93a5032d53c4e Mon Sep 17 00:00:00 2001 From: DannyCato <142823110+DannyCato@users.noreply.github.com> Date: Sat, 28 Mar 2026 13:11:59 -0400 Subject: [PATCH] Update CMakeLists.txt for STM32F469 --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7351fd7..b358bd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,6 +25,9 @@ elseif(TARGET_DEV STREQUAL "STM32F334x8") elseif(TARGET_DEV STREQUAL "STM32F446xx") add_compile_definitions(STM32F446xx) add_compile_definitions(STM32F4xx) +elseif(TARGET_DEV STREQUAL "STM32F469xx") + add_compile_definitions(STM32F469xx) + add_compile_definitions(STM32F4xx) else() message(FATAL_ERROR "The target device is not supported") endif()