You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
426 B
16 lines
426 B
ifdef CONFIG_USE_FREEMODBUS
|
|
|
|
CSRCS_RELATIVE_FILES += $(wildcard *.c)
|
|
CSRCS_RELATIVE_FILES += $(wildcard functions/*.c)
|
|
CSRCS_RELATIVE_FILES += $(wildcard port/*.c)
|
|
|
|
ifdef CONFIG_USE_MODBUS_ASCII
|
|
CSRCS_RELATIVE_FILES += $(wildcard ascii/*.c)
|
|
endif
|
|
ifdef CONFIG_USE_MODBUS_RTU
|
|
CSRCS_RELATIVE_FILES += $(wildcard rtu/*.c)
|
|
endif
|
|
ifdef CONFIG_USE_MODBUS_TCP
|
|
CSRCS_RELATIVE_FILES += $(wildcard tcp /*.c)
|
|
endif
|
|
endif
|