Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions example/Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,8 @@ EXAMPLES_CLASSIC_ONLY = \
spp_streamer \
spp_streamer_client \
ublox_spp_le_counter \
classic_paring_central \
classic_paring_peripheral \

# List of Examples that only use Bluetooth LE

Expand Down Expand Up @@ -301,6 +303,12 @@ default_target: all

# examples

classic_paring_central: ${CORE_OBJ} ${COMMON_OBJ} ${CLASSIC_OBJ} classic_paring_central.c
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@

classic_paring_peripheral: ${CORE_OBJ} ${COMMON_OBJ} ${CLASSIC_OBJ} classic_paring_peripheral.c
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@

ant_test: ${CORE_OBJ} ${COMMON_OBJ} ${CLASSIC_OBJ} ant_test.c
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@

Expand Down
Loading