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 3464f41fc boot/startup: Fix .bss and .data initialization
     new 1b3d4c615 mcu/stm32: Add STM32G4 MCU files
     new 2bc88a631 hw/bsp: Add BPS for nucleo-g491re
     new bf81e2fec Add STM32G4xx to RAT excludes and style ignore

The 3 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                                      |   5 +
 .style_ignored_dirs                                |   2 +
 hw/bsp/nucleo-g491re/bsp.yml                       |  65 ++++
 hw/bsp/{nucleo-g0b1re => nucleo-g491re}/debug.sh   |   0
 hw/bsp/nucleo-g491re/include/bsp/bsp.h             |  89 +++++
 .../nucleo-g491re/include/bsp/stm32g4xx_hal_conf.h | 381 +++++++++++++++++++++
 .../spi_stm32 => bsp/nucleo-g491re}/pkg.yml        |  52 +--
 hw/bsp/nucleo-g491re/src/hal_bsp.c                 | 249 ++++++++++++++
 hw/bsp/nucleo-g491re/syscfg.yml                    |  80 +++++
 hw/bus/drivers/spi_stm32/pkg.yml                   |   3 +
 .../spi_stm32/stm32g4xx/include/spidmacfg.h        | 159 +++++++++
 hw/bus/drivers/spi_stm32/{ => stm32g4xx}/pkg.yml   |  40 +--
 hw/bus/drivers/spi_stm32/stm32g4xx/src/spidmacfg.c | 182 ++++++++++
 hw/bus/drivers/spi_stm32/stm32g4xx/syscfg.yml      |  66 ++++
 hw/mcu/stm/stm32g4xx/include/mcu/cmsis_nvic.h      |  33 ++
 hw/mcu/stm/stm32g4xx/include/mcu/cortex_m4.h       |  39 +++
 hw/mcu/stm/stm32g4xx/include/mcu/mcu.h             |  38 ++
 hw/mcu/stm/stm32g4xx/include/mcu/mcu_vectors.h     |  42 +++
 hw/mcu/stm/stm32g4xx/include/mcu/stm32_hal.h       |  81 +++++
 hw/mcu/stm/stm32g4xx/include/mcu/stm32g4_bsp.h     |  57 +++
 .../stm32g4xx/include/mcu/stm32g4xx_mynewt_hal.h   |  67 ++++
 .../include/mcu/vectors/stm32g431xx_vectors.h      | 137 ++++++++
 .../include/mcu/vectors/stm32g441xx_vectors.h      | 137 ++++++++
 .../include/mcu/vectors/stm32g471xx_vectors.h      | 137 ++++++++
 .../include/mcu/vectors/stm32g473xx_vectors.h      | 137 ++++++++
 .../include/mcu/vectors/stm32g474xx_vectors.h      | 137 ++++++++
 .../include/mcu/vectors/stm32g483xx_vectors.h      | 137 ++++++++
 .../include/mcu/vectors/stm32g484xx_vectors.h      | 137 ++++++++
 .../include/mcu/vectors/stm32g491xx_vectors.h      | 137 ++++++++
 .../include/mcu/vectors/stm32g4a1xx_vectors.h      | 137 ++++++++
 .../include/mcu/vectors/stm32gbk1cb_vectors.h      | 137 ++++++++
 hw/mcu/stm/stm32g4xx/pkg.yml                       |  65 ++++
 hw/mcu/stm/stm32g4xx/src/clock_stm32g4xx.c         | 244 +++++++++++++
 .../stm/{stm32g0xx => stm32g4xx}/src/hal_flash.c   |   0
 hw/mcu/stm/stm32g4xx/src/hal_reset_cause.c         |  48 +++
 hw/mcu/stm/stm32g4xx/src/hal_system_init.c         |  43 +++
 .../{stm32f4xx => stm32g4xx}/src/hal_timer_freq.c  |   0
 hw/mcu/stm/stm32g4xx/src/system_stm32g4xx.c        | 297 ++++++++++++++++
 .../stm32l476.ld => stm32g4xx/stm32g4xx.ld}        |   0
 hw/mcu/stm/stm32g4xx/syscfg.yml                    | 149 ++++++++
 40 files changed, 3872 insertions(+), 74 deletions(-)
 create mode 100644 hw/bsp/nucleo-g491re/bsp.yml
 copy hw/bsp/{nucleo-g0b1re => nucleo-g491re}/debug.sh (100%)
 create mode 100644 hw/bsp/nucleo-g491re/include/bsp/bsp.h
 create mode 100644 hw/bsp/nucleo-g491re/include/bsp/stm32g4xx_hal_conf.h
 copy hw/{bus/drivers/spi_stm32 => bsp/nucleo-g491re}/pkg.yml (51%)
 create mode 100644 hw/bsp/nucleo-g491re/src/hal_bsp.c
 create mode 100644 hw/bsp/nucleo-g491re/syscfg.yml
 create mode 100644 hw/bus/drivers/spi_stm32/stm32g4xx/include/spidmacfg.h
 copy hw/bus/drivers/spi_stm32/{ => stm32g4xx}/pkg.yml (52%)
 create mode 100644 hw/bus/drivers/spi_stm32/stm32g4xx/src/spidmacfg.c
 create mode 100644 hw/bus/drivers/spi_stm32/stm32g4xx/syscfg.yml
 create mode 100644 hw/mcu/stm/stm32g4xx/include/mcu/cmsis_nvic.h
 create mode 100644 hw/mcu/stm/stm32g4xx/include/mcu/cortex_m4.h
 create mode 100644 hw/mcu/stm/stm32g4xx/include/mcu/mcu.h
 create mode 100644 hw/mcu/stm/stm32g4xx/include/mcu/mcu_vectors.h
 create mode 100644 hw/mcu/stm/stm32g4xx/include/mcu/stm32_hal.h
 create mode 100644 hw/mcu/stm/stm32g4xx/include/mcu/stm32g4_bsp.h
 create mode 100644 hw/mcu/stm/stm32g4xx/include/mcu/stm32g4xx_mynewt_hal.h
 create mode 100644 
hw/mcu/stm/stm32g4xx/include/mcu/vectors/stm32g431xx_vectors.h
 create mode 100644 
hw/mcu/stm/stm32g4xx/include/mcu/vectors/stm32g441xx_vectors.h
 create mode 100644 
hw/mcu/stm/stm32g4xx/include/mcu/vectors/stm32g471xx_vectors.h
 create mode 100644 
hw/mcu/stm/stm32g4xx/include/mcu/vectors/stm32g473xx_vectors.h
 create mode 100644 
hw/mcu/stm/stm32g4xx/include/mcu/vectors/stm32g474xx_vectors.h
 create mode 100644 
hw/mcu/stm/stm32g4xx/include/mcu/vectors/stm32g483xx_vectors.h
 create mode 100644 
hw/mcu/stm/stm32g4xx/include/mcu/vectors/stm32g484xx_vectors.h
 create mode 100644 
hw/mcu/stm/stm32g4xx/include/mcu/vectors/stm32g491xx_vectors.h
 create mode 100644 
hw/mcu/stm/stm32g4xx/include/mcu/vectors/stm32g4a1xx_vectors.h
 create mode 100644 
hw/mcu/stm/stm32g4xx/include/mcu/vectors/stm32gbk1cb_vectors.h
 create mode 100644 hw/mcu/stm/stm32g4xx/pkg.yml
 create mode 100644 hw/mcu/stm/stm32g4xx/src/clock_stm32g4xx.c
 copy hw/mcu/stm/{stm32g0xx => stm32g4xx}/src/hal_flash.c (100%)
 create mode 100644 hw/mcu/stm/stm32g4xx/src/hal_reset_cause.c
 create mode 100644 hw/mcu/stm/stm32g4xx/src/hal_system_init.c
 copy hw/mcu/stm/{stm32f4xx => stm32g4xx}/src/hal_timer_freq.c (100%)
 create mode 100644 hw/mcu/stm/stm32g4xx/src/system_stm32g4xx.c
 copy hw/mcu/stm/{stm32l4xx/stm32l476.ld => stm32g4xx/stm32g4xx.ld} (100%)
 create mode 100644 hw/mcu/stm/stm32g4xx/syscfg.yml

Reply via email to