-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
CMakeLists.txt
28 lines (24 loc) · 1.05 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
idf_component_register(
SRCS
# DMX driver HAL
"src/dmx/hal/uart.c" "src/dmx/hal/timer.c" "src/dmx/hal/nvs.c"
"src/dmx/hal/gpio.c"
# DMX driver and sniffer
"src/dmx/service.c" "src/dmx/driver.c"
"src/dmx/io.c" "src/dmx/device.c" "src/dmx/parameter.c"
"src/dmx/sniffer.c"
# RDM driver
"src/rdm/driver.c"
# RDM controller
"src/rdm/controller/discovery.c" "src/rdm/controller/product_info.c"
"src/rdm/controller/device_control.c" "src/rdm/controller/dmx_setup.c"
"src/rdm/controller/utils.c"
# RDM responder
"src/rdm/responder.c" "src/rdm/responder/discovery.c"
"src/rdm/responder/product_info.c" "src/rdm/responder/rdm_info.c"
"src/rdm/responder/device_control.c" "src/rdm/responder/queue_status.c"
"src/rdm/responder/dmx_setup.c" "src/rdm/responder/sensor_parameter.c"
"src/rdm/responder/power_lamp.c" "src/rdm/responder/utils.c"
INCLUDE_DIRS "src"
REQUIRES driver esp_timer esp_common esp_hw_support nvs_flash
)