You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2017/03/10 18:37:11 UTC

[9/9] incubator-mynewt-core git commit: This closes #201.

This closes #201.

Merge branch 'adgbranch' of https://github.com/gemcore/incubator-mynewt-core into develop


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/0759b123
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/0759b123
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/0759b123

Branch: refs/heads/develop
Commit: 0759b1237b47d010453cf1b3cf796d5ae1ae4f29
Parents: 021f579 873f6bb
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Fri Mar 10 10:30:14 2017 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Fri Mar 10 10:30:14 2017 -0800

----------------------------------------------------------------------
 apps/boot/src/boot.c                            |   2 +-
 diff.txt                                        | 330 ++++++++++++++
 hw/bsp/nina-b1/boot-nrf52xxaa.ld                |  25 ++
 hw/bsp/nina-b1/bsp.yml                          |  62 +++
 hw/bsp/nina-b1/include/bsp/boards.h             |  19 +
 hw/bsp/nina-b1/include/bsp/bsp.h                |  65 +++
 hw/bsp/nina-b1/include/bsp/cmsis_nvic.h         |  29 ++
 hw/bsp/nina-b1/nrf52dk_debug.sh                 |  46 ++
 hw/bsp/nina-b1/nrf52dk_download.sh              |  40 ++
 hw/bsp/nina-b1/nrf52dk_no_boot.ld               | 191 ++++++++
 hw/bsp/nina-b1/nrf52xxaa.ld                     |  25 ++
 hw/bsp/nina-b1/pkg.yml                          |  92 ++++
 hw/bsp/nina-b1/split-nrf52dk.ld                 | 208 +++++++++
 .../src/arch/cortex_m4/gcc_startup_nrf52.s      | 299 +++++++++++++
 .../arch/cortex_m4/gcc_startup_nrf52_split.s    | 163 +++++++
 hw/bsp/nina-b1/src/hal_bsp.c                    | 217 ++++++++++
 hw/bsp/nina-b1/src/sbrk.c                       |  59 +++
 hw/bsp/nina-b1/syscfg.yml                       | 111 +++++
 hw/bsp/sensorhub/boot-sensorhub.ld              |  31 ++
 hw/bsp/sensorhub/bsp.yml                        |  63 +++
 hw/bsp/sensorhub/f407.cfg                       |  82 ++++
 hw/bsp/sensorhub/include/bsp/bsp.h              |  72 ++++
 hw/bsp/sensorhub/include/bsp/cmsis_nvic.h       |  29 ++
 .../sensorhub/include/bsp/stm32f4xx_hal_conf.h  | 431 +++++++++++++++++++
 hw/bsp/sensorhub/pkg.yml                        |  40 ++
 hw/bsp/sensorhub/sensorhub.cfg                  |  22 +
 hw/bsp/sensorhub/sensorhub.ld                   |  31 ++
 hw/bsp/sensorhub/sensorhub_debug.cmd            |   3 +
 hw/bsp/sensorhub/sensorhub_debug.sh             |  39 ++
 hw/bsp/sensorhub/sensorhub_download.cmd         |   3 +
 hw/bsp/sensorhub/sensorhub_download.sh          |  42 ++
 .../src/arch/cortex_m4/startup_STM32F427xx.s    | 369 ++++++++++++++++
 hw/bsp/sensorhub/src/hal_bsp.c                  | 114 +++++
 hw/bsp/sensorhub/src/sbrk.c                     |  50 +++
 hw/bsp/sensorhub/src/system_stm32f4xx.c         | 275 ++++++++++++
 hw/bsp/sensorhub/syscfg.yml                     |  32 ++
 hw/mcu/stm/stm32f4xx/src/hal_gpio.c             |   2 +-
 hw/mcu/stm/stm32f4xx/stm32f427.ld               | 203 +++++++++
 repository.yml                                  |  12 +-
 39 files changed, 3923 insertions(+), 5 deletions(-)
----------------------------------------------------------------------