forked from lexus2k/tinyproto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponent.mk
More file actions
25 lines (22 loc) · 767 Bytes
/
component.mk
File metadata and controls
25 lines (22 loc) · 767 Bytes
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
# This is Makefile for ESP32 IDF
COMPONENT_ADD_INCLUDEDIRS := ./src
COMPONENT_SRCDIRS := ./src \
./src/proto \
./src/hal \
./src/proto/hdlc/high_level \
./src/proto/hdlc/low_level \
./src/proto/fd \
./src/proto/light \
./src/proto/crc \
./src/link \
./src/interface \
CPPFLAGS += \
-DTINY_LOG_LEVEL_DEFAULT=0 \
-DTINY_HDLC_DEBUG=0 \
-DTINY_FD_DEBUG=0 \
-DTINY_DEBUG=0
CPPFLAGS += \
-DCONFIG_ENABLE_FCS32 \
-DCONFIG_ENABLE_FCS16 \
-DCONFIG_ENABLE_CHECKSUM \
-DCONFIG_ENABLE_STATS