File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 11# ChangeLog
22
3+ ## v1.0.0 - 2024-12-06
4+
5+ ### Enhancements:
6+
7+ * feat(repo): refactor with esp-lib-utils
8+ * feat(repo): support micropython
9+
310## v0.1.0 - 2024-11-05
411
512### Enhancements:
Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ category=Other
88architectures =esp32
99url =https://github.com/esp-arduino-libs/ESP32_IO_Expander
1010includes =esp_io_expander.hpp
11- depends =esp-lib-utils (>=0.1.0 && < 0.2.0)
11+ depends =esp-lib-utils (>=0.1.0 && <0.2.0)
Original file line number Diff line number Diff line change 1+ # This file is to be given as "make USER_C_MODULES=..." when building Micropython port
2+
3+ add_library (usermod_esp_io_expander INTERFACE )
4+
5+ # Set the source directorya and find all source files.
6+ set (SRC_DIR ${CMAKE_CURRENT_LIST_DIR} /src)
7+ file (GLOB_RECURSE SRCS ${SRC_DIR} /*.c)
8+
9+ # Add our source files to the library.
10+ target_sources (usermod_esp_io_expander INTERFACE ${SRCS} )
11+
12+ # Add the current directory as an include directory.
13+ target_include_directories (usermod_esp_io_expander INTERFACE ${SRC_DIR} )
14+
15+ # Link our INTERFACE library to the usermod target.
16+ target_link_libraries (usermod INTERFACE usermod_esp_io_expander)
You can’t perform that action at this time.
0 commit comments