Renamed exti test to exti_both as it uses TRIGGER_BOTH mode and sampling the gpio pin to determine the state of the pin.

This commit is contained in:
Piotr Esden-Tempski 2011-01-13 14:52:23 -08:00
parent 8530f36df1
commit 9cea5525f6
4 changed files with 8 additions and 8 deletions

View File

@ -24,7 +24,7 @@ Q := @
MAKEFLAGS += --no-print-directory
endif
all: miniblink fancyblink usart usb_cdcacm usb_hid button exti
all: miniblink fancyblink usart usb_cdcacm usb_hid button exti_both
miniblink:
@printf " BUILD examples/stm32/stm32-h103/miniblink\n"
@ -54,9 +54,9 @@ button:
@printf " BUILD examples/stm32/stm32-h103/button\n"
$(Q)$(MAKE) -C button
exti:
@printf " BUILD examples/stm32/stm32-h103/exti\n"
$(Q)$(MAKE) -C exti
exti_both:
@printf " BUILD examples/stm32/stm32-h103/exti_both\n"
$(Q)$(MAKE) -C exti_both
clean:
@printf " CLEAN examples/stm32/stm32-h103/miniblink\n"
@ -73,8 +73,8 @@ clean:
$(Q)$(MAKE) -C usb_hid clean
@printf " CLEAN examples/stm32/stm32-h103/button\n"
$(Q)$(MAKE) -C button clean
@printf " CLEAN examples/stm32/stm32-h103/exti\n"
$(Q)$(MAKE) -C exti clean
@printf " CLEAN examples/stm32/stm32-h103/exti_both\n"
$(Q)$(MAKE) -C exti_both clean
.PHONY: miniblink fancyblink usart spi usb_cdcacm usb_hid button exti clean
.PHONY: miniblink fancyblink usart spi usb_cdcacm usb_hid button exti_both clean

View File

@ -17,7 +17,7 @@
## along with this program. If not, see <http://www.gnu.org/licenses/>.
##
BINARY = exti
BINARY = exti_both
include ../../Makefile.include