Add i2c_stts75_sensor example.

Thanks Thomas Otto <tommi@viadmin.org> for the patch!
This commit is contained in:
Uwe Hermann
2010-03-05 22:35:29 +01:00
parent f514162134
commit 46e5ed202a
8 changed files with 599 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ ifneq ($(V),1)
Q := @
endif
all: stm32-h103 mb525
all: stm32-h103 mb525 other
stm32-h103:
@printf " BUILD examples/stm32-h103\n"
@@ -35,11 +35,17 @@ mb525:
@printf " BUILD examples/mb525\n"
$(Q)$(MAKE) -C mb525
other:
@printf " BUILD examples/other\n"
$(Q)$(MAKE) -C other
clean:
@printf " CLEAN examples/stm32-h103\n"
$(Q)$(MAKE) -C stm32-h103 clean
@printf " CLEAN examples/mb525\n"
$(Q)$(MAKE) -C mb525 clean
@printf " CLEAN examples/other\n"
$(Q)$(MAKE) -C other clean
.PHONY: stm32-h103 mb525 clean
.PHONY: stm32-h103 mb525 other clean