mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
4fde033a5f
This commit adds support for using the RTC I2C peripheral on the ULP RISC-V core for esp32s2 and esp32s3. It also adds an example to demonstrate the usage of the RTC I2C peripheral. This commit also modifies the rtc_i2c register structure files to enable the use of bitfields in the ULP RISC-V RTC I2C driver.
26 lines
939 B
CMake
26 lines
939 B
CMake
idf_component_register(SRCS "ulp_riscv_rtc_i2c_example_main.c"
|
|
INCLUDE_DIRS ""
|
|
REQUIRES soc ulp)
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
|
|
|
|
#
|
|
# ULP support additions to component CMakeLists.txt.
|
|
#
|
|
# 1. The ULP app name must be unique (if multiple components use ULP).
|
|
set(ulp_app_name ulp_${COMPONENT_NAME})
|
|
#
|
|
# 2. Specify all C and Assembly source files.
|
|
# Files should be placed into a separate directory (in this case, ulp/),
|
|
# which should not be added to COMPONENT_SRCS.
|
|
set(ulp_riscv_sources "ulp/main.c")
|
|
|
|
#
|
|
# 3. List all the component source files which include automatically
|
|
# generated ULP export file, ${ulp_app_name}.h:
|
|
set(ulp_exp_dep_srcs "ulp_riscv_rtc_i2c_example_main.c")
|
|
|
|
#
|
|
# 4. Call function to build ULP binary and embed in project using the argument
|
|
# values above.
|
|
ulp_embed_binary(${ulp_app_name} "${ulp_riscv_sources}" "${ulp_exp_dep_srcs}")
|