Changeset c6f0efe2 in rtems
- Timestamp:
- Oct 24, 2013, 2:17:35 PM (6 years ago)
- Branches:
- 4.11, master
- Children:
- bb3f349
- Parents:
- 5fe19134
- git-author:
- Christian Mauderer <Christian.Mauderer@…> (10/24/13 14:17:35)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (10/24/13 14:29:05)
- Location:
- c/src/lib/libbsp/arm/stm32f4
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/arm/stm32f4/Makefile.am
r5fe19134 rc6f0efe2 50 50 include_bsp_HEADERS += include/stm32f10xxx_gpio.h 51 51 include_bsp_HEADERS += include/stm32f10xxx_rcc.h 52 include_bsp_HEADERS += include/stm32f10xxx_exti.h 52 53 include_bsp_HEADERS += include/stm32f4xxxx_gpio.h 53 54 include_bsp_HEADERS += include/stm32f4xxxx_rcc.h -
c/src/lib/libbsp/arm/stm32f4/include/stm32f4.h
r5fe19134 rc6f0efe2 41 41 #ifdef STM32F4_FAMILY_F10XXX 42 42 43 #include <bsp/stm32f10xxx_exti.h> 44 #define STM32F4_EXTI ((volatile stm32f4_exti *) (STM32F4_BASE + 0x40010400)) 45 43 46 #include <bsp/stm32f10xxx_gpio.h> 44 47 #define STM32F4_GPIO(i) ((volatile stm32f4_gpio *) (STM32F4_BASE + 0x40010800 + i * 0x400)) -
c/src/lib/libbsp/arm/stm32f4/preinstall.am
r5fe19134 rc6f0efe2 114 114 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/stm32f10xxx_rcc.h 115 115 116 $(PROJECT_INCLUDE)/bsp/stm32f10xxx_exti.h: include/stm32f10xxx_exti.h $(PROJECT_INCLUDE)/bsp/$(dirstamp) 117 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/stm32f10xxx_exti.h 118 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/stm32f10xxx_exti.h 119 116 120 $(PROJECT_INCLUDE)/bsp/stm32f4xxxx_gpio.h: include/stm32f4xxxx_gpio.h $(PROJECT_INCLUDE)/bsp/$(dirstamp) 117 121 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/stm32f4xxxx_gpio.h
Note: See TracChangeset
for help on using the changeset viewer.