This is an automated email from the ASF dual-hosted git repository.

jerzy pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


    from 13f24628f stylecheck: Add uncrastify exception for STATS
     new 733fe888e mcu/stm32f7: Fix reset reason
     new 67a7b81ba hw/mcu/stm32f7: Covert CRLF to LF
     new a5448a3bf hw/mcu/stm32f7: Use common startup code
     new 4e5614991 hw/bsp: Update all STMF7 BSPs to use common startup
     new 78039454f Update STM32F7xx RAT style and license excludes

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .rat-excludes                                      |   6 +-
 .style_ignored_dirs                                |   1 +
 LICENSE                                            |   3 -
 hw/bsp/nucleo-f746zg/boot-nucleo-f746zg.ld         |  30 -
 hw/bsp/nucleo-f746zg/bsp.yml                       |   9 +-
 hw/bsp/nucleo-f746zg/include/bsp/bsp.h             |  12 +-
 .../link/include/mcu_config.ld.h                   |  15 +-
 .../link/include/memory_regions.ld.h               |  19 +-
 hw/bsp/nucleo-f746zg/nucleo-f746zg_debug.cmd       |  22 -
 hw/bsp/nucleo-f746zg/nucleo-f746zg_download.cmd    |  22 -
 hw/bsp/nucleo-f746zg/pkg.yml                       |   2 +
 .../src/arch/cortex_m7/startup_stm32f746xx.s       | 609 -----------------
 hw/bsp/nucleo-f746zg/src/hal_bsp.c                 |  10 +-
 hw/bsp/nucleo-f746zg/syscfg.yml                    |   7 +
 hw/bsp/nucleo-f767zi/boot-nucleo-f767zi.ld         |  30 -
 hw/bsp/nucleo-f767zi/bsp.yml                       |   7 +-
 hw/bsp/nucleo-f767zi/include/bsp/bsp.h             |  12 +-
 .../link/include/mcu_config.ld.h                   |  15 +-
 .../link/include/memory_regions.ld.h               |  19 +-
 hw/bsp/nucleo-f767zi/pkg.yml                       |   1 +
 .../src/arch/cortex_m7/startup_stm32f767xx.s       | 656 ------------------
 hw/bsp/nucleo-f767zi/src/hal_bsp.c                 |  10 +-
 hw/bsp/nucleo-f767zi/syscfg.yml                    |   2 +
 hw/bsp/stm32f7discovery/boot-stm32f7discovery.ld   |  32 -
 hw/bsp/stm32f7discovery/bsp.yml                    |   7 +-
 hw/bsp/stm32f7discovery/include/bsp/bsp.h          |  16 +-
 hw/bsp/stm32f7discovery/pkg.yml                    |   2 +
 .../src/arch/cortex_m7/startup_stm32f746xx.s       | 609 -----------------
 hw/bsp/stm32f7discovery/src/hal_bsp.c              |  15 +-
 hw/bsp/stm32f7discovery/stm32f7discovery.ld        |  32 -
 hw/bsp/stm32f7discovery/syscfg.yml                 |   9 +-
 hw/mcu/stm/stm32f7xx/include/mcu/cmsis_nvic.h      |  12 +-
 hw/mcu/stm/stm32f7xx/include/mcu/mcu_vectors.h     |  50 ++
 .../include/mcu/vectors/stm32f722xx_vectors.h}     |  33 +-
 .../include/mcu/vectors/stm32f723xx_vectors.h}     |  33 +-
 .../include/mcu/vectors/stm32f730xx_vectors.h}     |  35 +-
 .../include/mcu/vectors/stm32f732xx_vectors.h}     |  35 +-
 .../include/mcu/vectors/stm32f733xx_vectors.h}     |  35 +-
 .../include/mcu/vectors/stm32f745xx_vectors.h}     |  11 +-
 .../include/mcu/vectors/stm32f746xx_vectors.h}     |  11 +-
 .../include/mcu/vectors/stm32f750xx_vectors.h}     |   9 +-
 .../include/mcu/vectors/stm32f756xx_vectors.h}     |   9 +-
 .../include/mcu/vectors/stm32f765xx_vectors.h}     |  46 +-
 .../include/mcu/vectors/stm32f767xx_vectors.h}     |  23 +-
 .../include/mcu/vectors/stm32f769xx_vectors.h}     |  21 +-
 .../include/mcu/vectors/stm32f777xx_vectors.h}     |  21 +-
 .../include/mcu/vectors/stm32f779xx_vectors.h}     |  19 +-
 hw/mcu/stm/stm32f7xx/src/clock_stm32f7xx.c         |   8 -
 hw/mcu/stm/stm32f7xx/src/hal_reset_cause.c         |  10 +-
 .../{stm32wbxx => stm32f7xx}/src/hal_system_init.c |  16 +-
 hw/mcu/stm/stm32f7xx/src/system_stm32f7xx.c        | 737 ++++++++++-----------
 hw/mcu/stm/stm32f7xx/stm32f746.ld                  | 217 ------
 hw/mcu/stm/stm32f7xx/stm32f767.ld                  | 217 ------
 53 files changed, 785 insertions(+), 3064 deletions(-)
 delete mode 100644 hw/bsp/nucleo-f746zg/boot-nucleo-f746zg.ld
 copy hw/bsp/{ada_feather_stm32f405 => 
nucleo-f746zg}/link/include/mcu_config.ld.h (81%)
 copy hw/bsp/{nucleo-f303re => nucleo-f746zg}/link/include/memory_regions.ld.h 
(60%)
 delete mode 100644 hw/bsp/nucleo-f746zg/nucleo-f746zg_debug.cmd
 delete mode 100644 hw/bsp/nucleo-f746zg/nucleo-f746zg_download.cmd
 delete mode 100644 
hw/bsp/nucleo-f746zg/src/arch/cortex_m7/startup_stm32f746xx.s
 delete mode 100644 hw/bsp/nucleo-f767zi/boot-nucleo-f767zi.ld
 copy hw/bsp/{ada_feather_stm32f405 => 
nucleo-f767zi}/link/include/mcu_config.ld.h (81%)
 copy hw/bsp/{nucleo-f303re => nucleo-f767zi}/link/include/memory_regions.ld.h 
(60%)
 delete mode 100644 
hw/bsp/nucleo-f767zi/src/arch/cortex_m7/startup_stm32f767xx.s
 delete mode 100644 hw/bsp/stm32f7discovery/boot-stm32f7discovery.ld
 delete mode 100644 
hw/bsp/stm32f7discovery/src/arch/cortex_m7/startup_stm32f746xx.s
 delete mode 100644 hw/bsp/stm32f7discovery/stm32f7discovery.ld
 create mode 100644 hw/mcu/stm/stm32f7xx/include/mcu/mcu_vectors.h
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f446xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f722xx_vectors.h} (90%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f446xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f723xx_vectors.h} (90%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f446xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f730xx_vectors.h} (90%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f446xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f732xx_vectors.h} (90%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f446xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f733xx_vectors.h} (90%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f427xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f745xx_vectors.h} (93%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f469xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f746xx_vectors.h} (94%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f479xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f750xx_vectors.h} (95%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f479xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f756xx_vectors.h} (95%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f413xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f765xx_vectors.h} (87%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f469xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f767xx_vectors.h} (87%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f469xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f769xx_vectors.h} (87%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f479xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f777xx_vectors.h} (87%)
 copy hw/mcu/stm/{stm32f4xx/include/mcu/vectors/stm32f479xx_vectors.h => 
stm32f7xx/include/mcu/vectors/stm32f779xx_vectors.h} (88%)
 copy hw/mcu/stm/{stm32wbxx => stm32f7xx}/src/hal_system_init.c (90%)
 delete mode 100644 hw/mcu/stm/stm32f7xx/stm32f746.ld
 delete mode 100644 hw/mcu/stm/stm32f7xx/stm32f767.ld

Reply via email to