mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
f02facbe28
Describe peripheral informations in the twai_peirph.c, including: Interrupt number, GPIO matrix signal ID, etc
22 lines
495 B
CMake
22 lines
495 B
CMake
set(srcs
|
|
"adc_periph.c"
|
|
"dedic_gpio_periph.c"
|
|
"gdma_periph.c"
|
|
"gpio_periph.c"
|
|
"sdm_periph.c"
|
|
"interrupts.c"
|
|
"spi_periph.c"
|
|
"ledc_periph.c"
|
|
"rmt_periph.c"
|
|
"i2s_periph.c"
|
|
"i2c_periph.c"
|
|
"uart_periph.c"
|
|
"temperature_sensor_periph.c"
|
|
"timer_periph.c"
|
|
"twai_periph.c")
|
|
|
|
add_prefix(srcs "${CMAKE_CURRENT_LIST_DIR}/" "${srcs}")
|
|
|
|
target_sources(${COMPONENT_LIB} PRIVATE "${srcs}")
|
|
target_include_directories(${COMPONENT_LIB} PUBLIC . include)
|