boards/stm32: Add ds1307 to CMake build

This commit is contained in:
Alan Carvalho de Assis 2024-04-17 14:50:36 -03:00 committed by Xiang Xiao
parent 169dd50a08
commit 8f4f166bf0
1 changed files with 4 additions and 0 deletions

View File

@ -56,6 +56,10 @@ if(CONFIG_LCD_SSD1306)
list(APPEND SRCS stm32_ssd1306.c)
endif()
if(CONFIG_RTC_DS1307)
list(APPEND SRCS stm32_ds1307.c)
endif()
if(CONFIG_SENSORS_LM75)
list(APPEND SRCS stm32_lm75.c)
endif()