mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
2fc9bd61bf
This commit refactors the ulp component. Files are now divided based on type of ulp, viz., fsm or risc-v. Files common to both are maintained in the ulp_common folder. This commit also adds menuconfig options for ULP within the ulp component instead of presenting target specific configuations for ulp.
22 lines
1.6 KiB
Plaintext
22 lines
1.6 KiB
Plaintext
INPUT += \
|
|
$(PROJECT_PATH)/components/soc/$(IDF_TARGET)/include/soc/dac_channel.h \
|
|
$(PROJECT_PATH)/components/driver/$(IDF_TARGET)/include/driver/dac.h \
|
|
$(PROJECT_PATH)/components/hal/include/hal/pcnt_types.h \
|
|
$(PROJECT_PATH)/components/driver/include/driver/pcnt.h \
|
|
$(PROJECT_PATH)/components/soc/$(IDF_TARGET)/include/soc/rtc_io_channel.h \
|
|
$(PROJECT_PATH)/components/driver/esp32s2/include/driver/temp_sensor.h \
|
|
$(PROJECT_PATH)/components/soc/$(IDF_TARGET)/include/soc/touch_sensor_channel.h \
|
|
$(PROJECT_PATH)/components/driver/$(IDF_TARGET)/include/driver/touch_sensor.h \
|
|
$(PROJECT_PATH)/components/esp_hw_support/include/soc/esp32s2/esp_ds.h \
|
|
$(PROJECT_PATH)/components/esp_hw_support/include/soc/esp32s2/esp_hmac.h \
|
|
$(PROJECT_PATH)/components/ulp/ulp_fsm/include/$(IDF_TARGET)/ulp.h \
|
|
$(PROJECT_PATH)/components/ulp/ulp_common/include/$(IDF_TARGET)/ulp_common_defs.h \
|
|
$(PROJECT_PATH)/components/touch_element/include/touch_element/touch_element.h \
|
|
$(PROJECT_PATH)/components/touch_element/include/touch_element/touch_button.h \
|
|
$(PROJECT_PATH)/components/touch_element/include/touch_element/touch_slider.h \
|
|
$(PROJECT_PATH)/components/touch_element/include/touch_element/touch_matrix.h \
|
|
$(PROJECT_PATH)/components/usb/include/usb/usb_helpers.h \
|
|
$(PROJECT_PATH)/components/usb/include/usb/usb_host.h \
|
|
$(PROJECT_PATH)/components/usb/include/usb/usb_types_ch9.h \
|
|
$(PROJECT_PATH)/components/usb/include/usb/usb_types_stack.h
|