Skip to content

Commit 17ef877

Browse files
author
Jim Lindblom
committed
Initial commit of example distance detector, board source, and makefiles.
1 parent 60166a2 commit 17ef877

6 files changed

+760
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
BUILD_ALL += out/sparkx_envelope_service_example
2+
3+
out/sparkx_envelope_service_example : \
4+
out/example_service_envelope.o \
5+
libacconeer.a \
6+
libacconeer_a111_r2c.a \
7+
libacc_local_server.a \
8+
libacc_message_driver_dummy.a \
9+
out/libcustomer.a \
10+
libacc_envelope.a \
11+
libacc_power_bins.a \
12+
libacc_service.a \
13+
out/acc_board_rpi_sparkx.o
14+
@echo " Linking $(notdir $@)"
15+
@mkdir -p out
16+
@$(LINK.o) -Wl,--start-group $^ -Wl,--end-group $(LOADLIBES) $(LDLIBS) -o $@
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
BUILD_ALL += out/sparkx_envelope_iq_example
2+
3+
out/sparkx_envelope_iq_example : \
4+
out/example_service_iq.o \
5+
libacconeer.a \
6+
libacconeer_a111_r2c.a \
7+
libacc_local_server.a \
8+
libacc_message_driver_dummy.a \
9+
out/libcustomer.a \
10+
libacc_envelope.a \
11+
libacc_power_bins.a \
12+
libacc_service.a \
13+
out/acc_board_rpi_sparkx.o
14+
@echo " Linking $(notdir $@)"
15+
@mkdir -p out
16+
@$(LINK.o) -Wl,--start-group $^ -Wl,--end-group $(LOADLIBES) $(LDLIBS) -o $@
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
BUILD_ALL += out/sparkx_power_bins_example
2+
3+
out/sparkx_power_bins_example : \
4+
out/example_service_power_bins.o \
5+
libacconeer.a \
6+
libacconeer_a111_r2c.a \
7+
libacc_local_server.a \
8+
libacc_message_driver_dummy.a \
9+
out/libcustomer.a \
10+
libacc_envelope.a \
11+
libacc_power_bins.a \
12+
libacc_service.a \
13+
out/acc_board_rpi_sparkx.o
14+
@echo " Linking $(notdir $@)"
15+
@mkdir -p out
16+
@$(LINK.o) -Wl,--start-group $^ -Wl,--end-group $(LOADLIBES) $(LDLIBS) -o $@
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
BUILD_ALL += out/sparkx_detector_distance
2+
3+
out/sparkx_detector_distance : \
4+
out/sparkx_detector_distance.o \
5+
libacconeer.a \
6+
libacconeer_a111_r2c.a \
7+
libacc_local_server.a \
8+
libacc_message_driver_dummy.a \
9+
out/libcustomer.a \
10+
libacc_envelope.a \
11+
libacc_power_bins.a \
12+
libacc_service.a \
13+
libacc_detector_distance_peak.a \
14+
out/acc_board_rpi_sparkx.o
15+
@echo " Linking $(notdir $@)"
16+
@mkdir -p out
17+
@$(LINK.o) -Wl,--start-group $^ -Wl,--end-group $(LOADLIBES) $(LDLIBS) -o $@

0 commit comments

Comments
 (0)