INTEGRATION¶
Introduction¶
Note
In this section, we introduce how to integrate the esp_rtcer driver into the project.
Create a New Component¶
Warning
Before you create a component in the driver
directory, make sure you have incorporated the driver
directory into the project by adding the path to the driver
directory to the EXTRA_COMPONENT_DIRS
variable in the project-level CMakeLists.txt
file.
Open the project in VSCode, open the integrated terminal, and type in
to actiate the ESP-IDF environment. Then type in the following command to create a new component named esp_rtc`:The command above means to create a new component named esp_rtc
in the driver
directory. After executing the command, you will see a new directory named esp_rtc
in the driver
directory. And the command will automatically generate the CMakeLists.txt
file for the new component, as well as the esp_rtc.h
and esp_rtc.c
files.
Alternatively, you can mannually create the esp_rtc
directory in the driver
directory, and then create the CMakeLists.txt
, esp_rtc.h
, and esp_rtc.c
files in the esp_rtc
directory.
Replace the Code¶
Component Level
Replace the code in this section into the CMakelists.txt
, esp_rtc.h
, and esp_rtc.c
files under the component.
Project Level
Replace the code in main.c
with the corresponding code. No need to change the CMakeLists.txt
file at the project level.
Compile and Flash the Project¶
Open the project in VSCode, open the integrated terminal, and type in
Now, you will see printout date and time from the serial monitor.