Changeset f16b8fc3 in rtems
- Timestamp:
- 06/10/22 12:00:12 (10 months ago)
- Branches:
- master
- Children:
- 1d07dfa
- Parents:
- d068cdb3
- git-author:
- Karel Gardas <karel@…> (06/10/22 12:00:12)
- git-committer:
- Karel Gardas <karel@…> (02/05/23 19:42:24)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
bsps/arm/stm32h7/boards/stm/stm32h757i-eval/stm32h7-bspstarthooks.c
rd068cdb3 rf16b8fc3 36 36 37 37 #include <string.h> 38 39 #include <stm32h747i_eval_qspi.h> 40 static BSP_QSPI_Init_t QSPinit; 41 42 void stm32h7_init_qspi(void) 43 { 44 #if defined(STM32H7_MEMORY_QUADSPI_SIZE) && STM32H7_MEMORY_QUADSPI_SIZE > 0 45 /* let's initialize Quad SPI memory here for memory mapped mode */ 46 /* due to usage of static QSPinit variable please call this function 47 after bsp_start_clear_bss call since otherwise you would hit uninitialized 48 variable memory while accessing it and in addition the call to bsp_start_clear_bss 49 would wipe the variable content later after its initialization here. */ 50 BSP_QSPI_Init(0, &QSPinit); 51 BSP_QSPI_EnableMemoryMappedMode(0); 52 #endif 53 } 38 54 39 55 void bsp_start_hook_0(void) … … 76 92 #endif 77 93 bsp_start_clear_bss(); 94 stm32h7_init_qspi(); 78 95 } -
bsps/arm/stm32h7/include/bsp.h
rd068cdb3 rf16b8fc3 63 63 void stm32h7_init_clocks(void); 64 64 void stm32h7_init_peripheral_clocks(void); 65 void stm32h7_init_qspi(void); 65 66 66 67 /** @} */ -
spec/build/bsps/arm/stm32h7/bspstm32h757i-eval.yml
rd068cdb3 rf16b8fc3 9 9 enabled-by: true 10 10 family: stm32h7 11 includes: [] 11 includes: 12 - bsps/arm/stm32h7/boards/stm/stm32h757i-eval 12 13 install: [] 13 14 links: … … 17 18 uid: tststm32h757i-eval 18 19 source: 20 - bsps/arm/stm32h7/boards/stm/Components/mt25tl01g/mt25tl01g.c 21 - bsps/arm/stm32h7/boards/stm/stm32h757i-eval/stm32h747i_eval_qspi.c 19 22 - bsps/arm/stm32h7/boards/stm/stm32h757i-eval/stm32h7-bspstarthooks.c 20 23 - bsps/arm/stm32h7/boards/stm/stm32h757i-eval/stm32h7-config-clk.c -
spec/build/bsps/arm/stm32h7/optmemquadspisz.yml
rd068cdb3 rf16b8fc3 3 3 - get-integer: null 4 4 - env-assign: null 5 - define-unquoted: null 5 6 build-type: option 6 7 copyrights: 7 8 - Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de) 8 9 default: 10 - enabled-by: 11 - arm/stm32h757i-eval 12 - arm/stm32h757i-eval-m4 13 value: 0x08000000 9 14 - enabled-by: true 10 15 value: 0x00000000
Note: See TracChangeset
for help on using the changeset viewer.