diff --git a/examples/stm32/stm32-h103/Makefile b/examples/stm32/stm32-h103/Makefile index f46eb67e..af901000 100644 --- a/examples/stm32/stm32-h103/Makefile +++ b/examples/stm32/stm32-h103/Makefile @@ -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 diff --git a/examples/stm32/stm32-h103/exti/Makefile b/examples/stm32/stm32-h103/exti_both/Makefile similarity index 97% rename from examples/stm32/stm32-h103/exti/Makefile rename to examples/stm32/stm32-h103/exti_both/Makefile index 824bb6a4..39e305be 100644 --- a/examples/stm32/stm32-h103/exti/Makefile +++ b/examples/stm32/stm32-h103/exti_both/Makefile @@ -17,7 +17,7 @@ ## along with this program. If not, see . ## -BINARY = exti +BINARY = exti_both include ../../Makefile.include diff --git a/examples/stm32/stm32-h103/exti/exti.c b/examples/stm32/stm32-h103/exti_both/exti_both.c similarity index 100% rename from examples/stm32/stm32-h103/exti/exti.c rename to examples/stm32/stm32-h103/exti_both/exti_both.c diff --git a/examples/stm32/stm32-h103/exti/exti.ld b/examples/stm32/stm32-h103/exti_both/exti_both.ld similarity index 100% rename from examples/stm32/stm32-h103/exti/exti.ld rename to examples/stm32/stm32-h103/exti_both/exti_both.ld