currently handles encoder connected to pins configured in encoder.hpp and receives and logs all available events in encoder task Works as expected TODO: migrate with previous implementation of commands in button.cpp
14 lines
367 B
CMake
14 lines
367 B
CMake
if(${IDF_TARGET} STREQUAL esp8266)
|
|
set(req esp8266 freertos log esp_timer)
|
|
elseif(${IDF_VERSION_MAJOR} STREQUAL 4 AND ${IDF_VERSION_MINOR} STREQUAL 1 AND ${IDF_VERSION_PATCH} STREQUAL 3)
|
|
set(req driver freertos log)
|
|
else()
|
|
set(req driver freertos log esp_timer)
|
|
endif()
|
|
|
|
idf_component_register(
|
|
SRCS encoder.c
|
|
INCLUDE_DIRS .
|
|
REQUIRES ${req}
|
|
)
|