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 f48267d02 bsp: Leave HSI on for STM32F1
new 209fbe6b4 mcu/stm32f3: Fix reset reason
new cd4bffd31 hw/mcu/stm32f3: Covert CRLF to LF
new 76415488c hw/mcu/stm32f3: Use common startup code
new c287f6089 hw/bsp: Update all STMF3 BSPs to use common startup
new 58a56243b Update STM32F3xx RAT style and license excludes
new 7939d1e50 ci: Update ignored BSP list for bootloader build test
The 6 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:
.github/test_build_bootloader.sh | 1 +
.rat-excludes | 7 +-
.style_ignored_dirs | 1 +
LICENSE | 3 -
hw/bsp/nucleo-f303k8/bsp.yml | 8 +-
.../link/include/mcu_config.ld.h | 0
.../link/include/memory_regions.ld.h | 6 +-
hw/bsp/nucleo-f303k8/nucleo-f303k8.ld | 33 --
hw/bsp/nucleo-f303k8/nucleo-f303k8_debug.cmd | 22 -
hw/bsp/nucleo-f303k8/nucleo-f303k8_download.cmd | 22 -
hw/bsp/nucleo-f303k8/nucleo-f303k8_download.sh | 55 ---
hw/bsp/nucleo-f303k8/pkg.yml | 2 +
.../src/arch/cortex_m4/startup_stm32f303x8.s | 408 -----------------
hw/bsp/nucleo-f303k8/syscfg.yml | 8 +
hw/bsp/nucleo-f303re/boot-nucleo-f303re.ld | 31 --
hw/bsp/nucleo-f303re/bsp.yml | 11 +-
.../link/include/mcu_config.ld.h | 0
.../link/include/memory_regions.ld.h | 6 +-
hw/bsp/nucleo-f303re/nucleo-f303re.ld | 32 --
hw/bsp/nucleo-f303re/nucleo-f303re_debug.cmd | 22 -
hw/bsp/nucleo-f303re/nucleo-f303re_download.cmd | 22 -
hw/bsp/nucleo-f303re/nucleo-f303re_download.sh | 57 ---
hw/bsp/nucleo-f303re/pkg.yml | 2 +
.../src/arch/cortex_m4/startup_stm32f303xe.s | 506 ---------------------
hw/bsp/nucleo-f303re/syscfg.yml | 9 +
hw/bsp/stm32f3discovery/boot-stm32f3discovery.ld | 31 --
hw/bsp/stm32f3discovery/bsp.yml | 11 +-
.../link/include/mcu_config.ld.h | 0
.../link/include/memory_regions.ld.h | 6 +-
hw/bsp/stm32f3discovery/pkg.yml | 2 +
.../src/arch/cortex_m4/startup_stm32f303xc.s | 493 --------------------
hw/bsp/stm32f3discovery/stm32f3discovery.ld | 32 --
hw/bsp/stm32f3discovery/stm32f3discovery_debug.cmd | 22 -
.../stm32f3discovery/stm32f3discovery_download.cmd | 22 -
.../stm32f3discovery/stm32f3discovery_download.sh | 41 --
hw/bsp/stm32f3discovery/syscfg.yml | 8 +
hw/mcu/stm/stm32f3xx/include/mcu/cmsis_nvic.h | 6 +-
hw/mcu/stm/stm32f3xx/include/mcu/mcu_vectors.h | 50 ++
.../include/mcu/vectors/stm32f301x8_vectors.h} | 43 +-
.../include/mcu/vectors/stm32f302x8_vectors.h} | 53 ++-
.../include/mcu/vectors/stm32f302xc_vectors.h} | 55 ++-
.../include/mcu/vectors/stm32f302xe_vectors.h} | 58 +--
.../include/mcu/vectors/stm32f303x8_vectors.h} | 59 ++-
.../include/mcu/vectors/stm32f303xc_vectors.h} | 50 +-
.../include/mcu/vectors/stm32f303xe_vectors.h} | 55 +--
.../include/mcu/vectors/stm32f318xx_vectors.h} | 43 +-
.../include/mcu/vectors/stm32f328xx_vectors.h} | 59 ++-
.../include/mcu/vectors/stm32f334x8_vectors.h} | 59 ++-
.../include/mcu/vectors/stm32f358xx_vectors.h} | 57 ++-
.../include/mcu/vectors/stm32f373xc_vectors.h} | 63 ++-
.../include/mcu/vectors/stm32f378xx_vectors.h} | 63 ++-
.../include/mcu/vectors/stm32f398xx_vectors.h} | 53 ++-
hw/mcu/stm/stm32f3xx/src/hal_reset_cause.c | 8 +-
.../{stm32f1xx => stm32f3xx}/src/hal_system_init.c | 6 +-
hw/mcu/stm/stm32f3xx/src/system_stm32f3xx.c | 415 +++++++++--------
hw/mcu/stm/stm32f3xx/stm32f303.ld | 214 ---------
56 files changed, 687 insertions(+), 2724 deletions(-)
copy hw/bsp/{ada_feather_stm32f405 =>
nucleo-f303k8}/link/include/mcu_config.ld.h (100%)
copy hw/bsp/{ada_feather_stm32f405 =>
nucleo-f303k8}/link/include/memory_regions.ld.h (82%)
delete mode 100644 hw/bsp/nucleo-f303k8/nucleo-f303k8.ld
delete mode 100644 hw/bsp/nucleo-f303k8/nucleo-f303k8_debug.cmd
delete mode 100644 hw/bsp/nucleo-f303k8/nucleo-f303k8_download.cmd
delete mode 100755 hw/bsp/nucleo-f303k8/nucleo-f303k8_download.sh
delete mode 100644
hw/bsp/nucleo-f303k8/src/arch/cortex_m4/startup_stm32f303x8.s
delete mode 100644 hw/bsp/nucleo-f303re/boot-nucleo-f303re.ld
copy hw/bsp/{ada_feather_stm32f405 =>
nucleo-f303re}/link/include/mcu_config.ld.h (100%)
copy hw/bsp/{ada_feather_stm32f405 =>
nucleo-f303re}/link/include/memory_regions.ld.h (82%)
delete mode 100644 hw/bsp/nucleo-f303re/nucleo-f303re.ld
delete mode 100644 hw/bsp/nucleo-f303re/nucleo-f303re_debug.cmd
delete mode 100644 hw/bsp/nucleo-f303re/nucleo-f303re_download.cmd
delete mode 100755 hw/bsp/nucleo-f303re/nucleo-f303re_download.sh
delete mode 100644
hw/bsp/nucleo-f303re/src/arch/cortex_m4/startup_stm32f303xe.s
delete mode 100644 hw/bsp/stm32f3discovery/boot-stm32f3discovery.ld
copy hw/bsp/{ada_feather_stm32f405 =>
stm32f3discovery}/link/include/mcu_config.ld.h (100%)
copy hw/bsp/{ada_feather_stm32f405 =>
stm32f3discovery}/link/include/memory_regions.ld.h (82%)
delete mode 100644
hw/bsp/stm32f3discovery/src/arch/cortex_m4/startup_stm32f303xc.s
delete mode 100644 hw/bsp/stm32f3discovery/stm32f3discovery.ld
delete mode 100644 hw/bsp/stm32f3discovery/stm32f3discovery_debug.cmd
delete mode 100644 hw/bsp/stm32f3discovery/stm32f3discovery_download.cmd
delete mode 100755 hw/bsp/stm32f3discovery/stm32f3discovery_download.sh
create mode 100644 hw/mcu/stm/stm32f3xx/include/mcu/mcu_vectors.h
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l412xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f301x8_vectors.h} (81%)
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l412xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f302x8_vectors.h} (81%)
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l422xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f302xc_vectors.h} (83%)
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l451xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f302xe_vectors.h} (80%)
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l412xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f303x8_vectors.h} (78%)
copy hw/mcu/stm/{stm32g4xx/include/mcu/vectors/stm32g471xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f303xc_vectors.h} (79%)
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l471xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f303xe_vectors.h} (80%)
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l412xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f318xx_vectors.h} (81%)
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l412xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f328xx_vectors.h} (78%)
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l412xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f334x8_vectors.h} (78%)
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l422xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f358xx_vectors.h} (81%)
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l431xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f373xc_vectors.h} (78%)
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l412xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f378xx_vectors.h} (80%)
copy hw/mcu/stm/{stm32l4xx/include/mcu/vectors/stm32l471xx_vectors.h =>
stm32f3xx/include/mcu/vectors/stm32f398xx_vectors.h} (81%)
copy hw/mcu/stm/{stm32f1xx => stm32f3xx}/src/hal_system_init.c (100%)
delete mode 100644 hw/mcu/stm/stm32f3xx/stm32f303.ld