7 lines
129 B
Makefile
7 lines
129 B
Makefile
|
ifdef HARDWARE_SERIAL
|
||
|
SRC += protocol/serial_uart.c
|
||
|
OPT_DEFS += -DHARDWARE_SERIAL
|
||
|
else
|
||
|
SRC += protocol/serial_soft.c
|
||
|
endif
|