2020-08-08 20:15:27 +08:00
|
|
|
set(srcs
|
2020-09-25 13:57:52 +08:00
|
|
|
"adc_periph.c"
|
|
|
|
"dac_periph.c"
|
2022-04-28 17:44:59 +08:00
|
|
|
"dport_access.c"
|
2020-09-25 13:57:52 +08:00
|
|
|
"gpio_periph.c"
|
2022-05-17 13:47:14 +08:00
|
|
|
"sdm_periph.c"
|
2020-09-25 13:57:52 +08:00
|
|
|
"i2c_periph.c"
|
|
|
|
"i2s_periph.c"
|
|
|
|
"interrupts.c"
|
2021-08-04 20:11:31 +08:00
|
|
|
"lcd_periph.c"
|
2020-09-25 13:57:52 +08:00
|
|
|
"ledc_periph.c"
|
2021-02-25 18:55:30 +08:00
|
|
|
"mcpwm_periph.c"
|
2020-10-09 16:41:41 +08:00
|
|
|
"pcnt_periph.c"
|
|
|
|
"rmt_periph.c"
|
2020-09-25 13:57:52 +08:00
|
|
|
"rtc_io_periph.c"
|
|
|
|
"sdio_slave_periph.c"
|
|
|
|
"sdmmc_periph.c"
|
|
|
|
"spi_periph.c"
|
2020-10-14 11:46:30 +08:00
|
|
|
"timer_periph.c"
|
2020-09-25 13:57:52 +08:00
|
|
|
"touch_sensor_periph.c"
|
|
|
|
"uart_periph.c")
|
2020-01-08 12:50:03 +08:00
|
|
|
|
|
|
|
add_prefix(srcs "${CMAKE_CURRENT_LIST_DIR}/" "${srcs}")
|
|
|
|
|
|
|
|
target_sources(${COMPONENT_LIB} PRIVATE "${srcs}")
|
|
|
|
target_include_directories(${COMPONENT_LIB} PUBLIC . include)
|
2022-04-28 17:44:59 +08:00
|
|
|
|
|
|
|
#esp_dport_access_reg_read is added as an undefined symbol because otherwise
|
|
|
|
#the linker can ignore dport_access.c as it would no other files depending on any symbols in it.
|
|
|
|
set_property(TARGET ${COMPONENT_LIB} APPEND PROPERTY INTERFACE_LINK_LIBRARIES "-u esp_dport_access_reg_read")
|