You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by st...@apache.org on 2018/03/23 15:54:39 UTC

[mynewt-core] branch master updated (622edc2 -> 316a2ec)

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

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


    from 622edc2  Merge pull request #949 from rymanluk/pts_coc
     add 6d8af93  Move stm32f4 spi driver to stm32_common
     add 60ae53d  Remove patch reject file
     add 1ce0458  Fix comment
     add 70cafb4  Move STM32F4 SPI driver to STM32 common HAL
     add 4365ae8  Remove STM32L1 hal_spi driver
     add 3971106  Add SPI config for nucleo-f767/stm32l152discovery
     add b008745  Fix shared SPI driver between F4/F7/L1
     add 0461d3b  Add support for STM32L1x SPI
     add 6d34da3  stm32f1xx / olimex-p103 UART fix
     add 9034d3a  Add SPI config for Olimex STM32P103
     add f83fee3  Add F1 SPI config and fix build
     add 6b5cafc  Restore spi cfg after bad rebase
     add dc1f78a  Disable SPI CRC is all BSPs
     add 7ead5e2  Initial SPI support for f3discovery
     add 1e8185d  Add initial support for FIFO based SPIs
     new 316a2ec  Merge pull request #941 from utzig/stm32-common-spi

The 1 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:
 apps/spitest/src/main.c                            |    2 +-
 .../nucleo-f303k8/include/bsp/stm32f3xx_hal_conf.h |    2 +-
 .../nucleo-f303re/include/bsp/stm32f3xx_hal_conf.h |    2 +-
 .../nucleo-f401re/include/bsp/stm32f4xx_hal_conf.h |    2 +-
 hw/bsp/nucleo-f401re/src/hal_bsp.c                 |    5 +-
 .../nucleo-f413re/include/bsp/stm32f4xx_hal_conf.h |    2 +-
 hw/bsp/nucleo-f413re/src/hal_bsp.c                 |    5 +-
 .../nucleo-f413zh/include/bsp/stm32f4xx_hal_conf.h |    2 +-
 hw/bsp/nucleo-f413zh/src/hal_bsp.c                 |    5 +-
 .../olimex-p103/include/bsp/stm32f1xx_hal_conf.h   |    2 +-
 hw/bsp/olimex-p103/src/hal_bsp.c                   |   68 +-
 .../include/bsp/stm32f4xx_hal_conf.h               |    2 +-
 hw/bsp/olimex_stm32-e407_devboard/src/hal_bsp.c    |    3 +-
 hw/bsp/sensorhub/include/bsp/stm32f4xx_hal_conf.h  |    2 +-
 .../include/bsp/stm32f3xx_hal_conf.h               |    4 +-
 hw/bsp/stm32f3discovery/src/hal_bsp.c              |   75 +-
 .../include/bsp/stm32f4xx_hal_conf.h               |    2 +-
 .../include/bsp/stm32f4xx_hal_conf.h               |    2 +-
 hw/bsp/stm32f4discovery/src/hal_bsp.c              |   25 +
 .../include/bsp/stm32f7xx_hal_conf.h               |   49 +-
 hw/bsp/stm32f767-nucleo/src/hal_bsp.c              |   25 +
 .../include/bsp/stm32f7xx_hal_conf.h               |    2 +-
 hw/bsp/stm32l152discovery/src/hal_bsp.c            |   29 +
 .../stm/{stm32f4xx => stm32_common}/src/hal_spi.c  |  494 ++--
 hw/mcu/stm/stm32_common/src/stm32_driver_mod_spi.c |  726 +++++
 hw/mcu/stm/stm32f1xx/include/mcu/stm32_hal.h       |   18 +
 hw/mcu/stm/stm32f1xx/include/mcu/stm32f1_bsp.h     |    8 +-
 hw/mcu/stm/stm32f1xx/src/hal_gpio.c                |   26 -
 hw/mcu/stm/stm32f1xx/src/hal_spi.c                 |  911 -------
 hw/mcu/stm/stm32f1xx/src/hal_uart.c                |   29 +-
 hw/mcu/stm/stm32f1xx/syscfg.yml                    |   17 +
 hw/mcu/stm/stm32f3xx/include/mcu/stm32_hal.h       |   18 +
 hw/mcu/stm/stm32f3xx/syscfg.yml                    |   27 +
 hw/mcu/stm/stm32f4xx/include/mcu/stm32_hal.h       |   18 +
 .../stm32f4xx/include/mcu/stm32f4xx_mynewt_hal.h   |    9 -
 hw/mcu/stm/stm32f4xx/pkg.yml                       |    7 +-
 .../Src/stm32f4xx_hal_spi.c.rej                    |   46 -
 hw/mcu/stm/stm32f4xx/src/stm32_driver_mod_spi.c    | 2821 --------------------
 hw/mcu/stm/stm32f7xx/include/mcu/stm32_hal.h       |   18 +
 .../stm32f7xx/include/mcu/stm32f7xx_mynewt_hal.h   |    8 -
 hw/mcu/stm/stm32f7xx/syscfg.yml                    |   10 +
 hw/mcu/stm/stm32l1xx/include/mcu/stm32_hal.h       |   18 +
 .../stm32l1xx/include/mcu/stm32l1xx_mynewt_hal.h   |    8 -
 hw/mcu/stm/stm32l1xx/src/hal_spi.c                 |  908 -------
 hw/mcu/stm/stm32l1xx/syscfg.yml                    |   11 +
 45 files changed, 1444 insertions(+), 5029 deletions(-)
 rename hw/mcu/stm/{stm32f4xx => stm32_common}/src/hal_spi.c (66%)
 create mode 100644 hw/mcu/stm/stm32_common/src/stm32_driver_mod_spi.c
 delete mode 100644 hw/mcu/stm/stm32f1xx/src/hal_spi.c
 delete mode 100644 hw/mcu/stm/stm32f4xx/src/ext/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.rej
 delete mode 100644 hw/mcu/stm/stm32f4xx/src/stm32_driver_mod_spi.c
 delete mode 100644 hw/mcu/stm/stm32l1xx/src/hal_spi.c

-- 
To stop receiving notification emails like this one, please contact
sterling@apache.org.

[mynewt-core] 01/01: Merge pull request #941 from utzig/stm32-common-spi

Posted by st...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 316a2ec77bd2a3114f390ce57b821e88f08fe138
Merge: 622edc2 1e8185d
Author: Sterling Hughes <st...@users.noreply.github.com>
AuthorDate: Fri Mar 23 08:54:37 2018 -0700

    Merge pull request #941 from utzig/stm32-common-spi
    
    Stm32 common SPI

 apps/spitest/src/main.c                            |    2 +-
 .../nucleo-f303k8/include/bsp/stm32f3xx_hal_conf.h |    2 +-
 .../nucleo-f303re/include/bsp/stm32f3xx_hal_conf.h |    2 +-
 .../nucleo-f401re/include/bsp/stm32f4xx_hal_conf.h |    2 +-
 hw/bsp/nucleo-f401re/src/hal_bsp.c                 |    5 +-
 .../nucleo-f413re/include/bsp/stm32f4xx_hal_conf.h |    2 +-
 hw/bsp/nucleo-f413re/src/hal_bsp.c                 |    5 +-
 .../nucleo-f413zh/include/bsp/stm32f4xx_hal_conf.h |    2 +-
 hw/bsp/nucleo-f413zh/src/hal_bsp.c                 |    5 +-
 .../olimex-p103/include/bsp/stm32f1xx_hal_conf.h   |    2 +-
 hw/bsp/olimex-p103/src/hal_bsp.c                   |   68 +-
 .../include/bsp/stm32f4xx_hal_conf.h               |    2 +-
 hw/bsp/olimex_stm32-e407_devboard/src/hal_bsp.c    |    3 +-
 hw/bsp/sensorhub/include/bsp/stm32f4xx_hal_conf.h  |    2 +-
 .../include/bsp/stm32f3xx_hal_conf.h               |    4 +-
 hw/bsp/stm32f3discovery/src/hal_bsp.c              |   75 +-
 .../include/bsp/stm32f4xx_hal_conf.h               |    2 +-
 .../include/bsp/stm32f4xx_hal_conf.h               |    2 +-
 hw/bsp/stm32f4discovery/src/hal_bsp.c              |   25 +
 .../include/bsp/stm32f7xx_hal_conf.h               |   49 +-
 hw/bsp/stm32f767-nucleo/src/hal_bsp.c              |   25 +
 .../include/bsp/stm32f7xx_hal_conf.h               |    2 +-
 hw/bsp/stm32l152discovery/src/hal_bsp.c            |   29 +
 .../stm/{stm32f4xx => stm32_common}/src/hal_spi.c  |  494 ++--
 hw/mcu/stm/stm32_common/src/stm32_driver_mod_spi.c |  726 +++++
 hw/mcu/stm/stm32f1xx/include/mcu/stm32_hal.h       |   18 +
 hw/mcu/stm/stm32f1xx/include/mcu/stm32f1_bsp.h     |    8 +-
 hw/mcu/stm/stm32f1xx/src/hal_gpio.c                |   26 -
 hw/mcu/stm/stm32f1xx/src/hal_spi.c                 |  911 -------
 hw/mcu/stm/stm32f1xx/src/hal_uart.c                |   29 +-
 hw/mcu/stm/stm32f1xx/syscfg.yml                    |   17 +
 hw/mcu/stm/stm32f3xx/include/mcu/stm32_hal.h       |   18 +
 hw/mcu/stm/stm32f3xx/syscfg.yml                    |   27 +
 hw/mcu/stm/stm32f4xx/include/mcu/stm32_hal.h       |   18 +
 .../stm32f4xx/include/mcu/stm32f4xx_mynewt_hal.h   |    9 -
 hw/mcu/stm/stm32f4xx/pkg.yml                       |    7 +-
 .../Src/stm32f4xx_hal_spi.c.rej                    |   46 -
 hw/mcu/stm/stm32f4xx/src/stm32_driver_mod_spi.c    | 2821 --------------------
 hw/mcu/stm/stm32f7xx/include/mcu/stm32_hal.h       |   18 +
 .../stm32f7xx/include/mcu/stm32f7xx_mynewt_hal.h   |    8 -
 hw/mcu/stm/stm32f7xx/syscfg.yml                    |   10 +
 hw/mcu/stm/stm32l1xx/include/mcu/stm32_hal.h       |   18 +
 .../stm32l1xx/include/mcu/stm32l1xx_mynewt_hal.h   |    8 -
 hw/mcu/stm/stm32l1xx/src/hal_spi.c                 |  908 -------
 hw/mcu/stm/stm32l1xx/syscfg.yml                    |   11 +
 45 files changed, 1444 insertions(+), 5029 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
sterling@apache.org.