You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by we...@apache.org on 2017/07/05 21:23:07 UTC

[mynewt-core] branch master updated (5420968 -> 35cc491)

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

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


    from 5420968  Merge pull request #349 from francois-berder/periph-i2c
     add 2f07acf  Add support for the VBLUno52 board The VBLUno52 board from VNG (Nordic nRF52832 Cortex-M4 SoC based)
     new 35cc491  Merge pull request #377 from iotvietmember/add_vbluno52_board

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:
 README.md                                          |  1 +
 hw/bsp/{telee02 => vbluno52}/boot-nrf52xxaa.ld     |  0
 hw/bsp/{rb-nano2 => vbluno52}/bsp.yml              | 14 +++++------
 .../include/bsp/bsp.h                              | 15 ++++++++----
 .../{telee02 => vbluno52}/include/bsp/cmsis_nvic.h |  0
 hw/bsp/{telee02 => vbluno52}/nrf52xxaa.ld          |  0
 hw/bsp/{ada_feather_nrf52 => vbluno52}/pkg.yml     | 19 +++++++--------
 .../split-vbluno52.ld}                             |  0
 .../src/arch/cortex_m4/gcc_startup_nrf52.s         |  0
 .../src/arch/cortex_m4/gcc_startup_nrf52_split.s   |  0
 .../{ada_feather_nrf52 => vbluno52}/src/hal_bsp.c  | 28 ++++++++++++++++------
 hw/bsp/{vbluno51 => vbluno52}/src/sbrk.c           |  0
 hw/bsp/{nrf52dk => vbluno52}/syscfg.yml            | 12 ++++++----
 .../vbluno52_debug.cmd}                            |  0
 .../vbluno52_debug.sh}                             |  6 ++---
 .../vbluno52_download.cmd}                         |  0
 .../vbluno52_download.sh}                          |  1 -
 .../vbluno52_no_boot.ld}                           |  0
 18 files changed, 59 insertions(+), 37 deletions(-)
 copy hw/bsp/{telee02 => vbluno52}/boot-nrf52xxaa.ld (100%)
 copy hw/bsp/{rb-nano2 => vbluno52}/bsp.yml (82%)
 copy hw/bsp/{arduino_primo_nrf52 => vbluno52}/include/bsp/bsp.h (88%)
 copy hw/bsp/{telee02 => vbluno52}/include/bsp/cmsis_nvic.h (100%)
 copy hw/bsp/{telee02 => vbluno52}/nrf52xxaa.ld (100%)
 copy hw/bsp/{ada_feather_nrf52 => vbluno52}/pkg.yml (87%)
 copy hw/bsp/{telee02/split-telee02.ld => vbluno52/split-vbluno52.ld} (100%)
 copy hw/bsp/{telee02 => vbluno52}/src/arch/cortex_m4/gcc_startup_nrf52.s (100%)
 copy hw/bsp/{telee02 => vbluno52}/src/arch/cortex_m4/gcc_startup_nrf52_split.s (100%)
 copy hw/bsp/{ada_feather_nrf52 => vbluno52}/src/hal_bsp.c (91%)
 copy hw/bsp/{vbluno51 => vbluno52}/src/sbrk.c (100%)
 copy hw/bsp/{nrf52dk => vbluno52}/syscfg.yml (93%)
 copy hw/bsp/{vbluno51/vbluno51_download.cmd => vbluno52/vbluno52_debug.cmd} (100%)
 copy hw/bsp/{rb-blend2/rb-blend2_debug.sh => vbluno52/vbluno52_debug.sh} (99%)
 copy hw/bsp/{vbluno51/vbluno51_download.cmd => vbluno52/vbluno52_download.cmd} (100%)
 copy hw/bsp/{rb-nano2/rb-nano2_download.sh => vbluno52/vbluno52_download.sh} (99%)
 copy hw/bsp/{telee02/telee02_no_boot.ld => vbluno52/vbluno52_no_boot.ld} (100%)

-- 
To stop receiving notification emails like this one, please contact
['"commits@mynewt.apache.org" <co...@mynewt.apache.org>'].

[mynewt-core] 01/01: Merge pull request #377 from iotvietmember/add_vbluno52_board

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

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

commit 35cc4912a8a97081eb03d380042c017c18085bde
Merge: 5420968 2f07acf
Author: wes3 <wi...@runtime.io>
AuthorDate: Wed Jul 5 14:23:04 2017 -0700

    Merge pull request #377 from iotvietmember/add_vbluno52_board
    
    Add support for the VBLUno52 board

 README.md                                          |   1 +
 hw/bsp/vbluno52/boot-nrf52xxaa.ld                  |  25 ++
 hw/bsp/vbluno52/bsp.yml                            |  64 +++++
 hw/bsp/vbluno52/include/bsp/bsp.h                  |  58 ++++
 hw/bsp/vbluno52/include/bsp/cmsis_nvic.h           |  29 ++
 hw/bsp/vbluno52/nrf52xxaa.ld                       |  25 ++
 hw/bsp/vbluno52/pkg.yml                            |  95 +++++++
 hw/bsp/vbluno52/split-vbluno52.ld                  | 208 ++++++++++++++
 .../src/arch/cortex_m4/gcc_startup_nrf52.s         | 301 +++++++++++++++++++++
 .../src/arch/cortex_m4/gcc_startup_nrf52_split.s   | 166 ++++++++++++
 hw/bsp/vbluno52/src/hal_bsp.c                      | 230 ++++++++++++++++
 hw/bsp/vbluno52/src/sbrk.c                         |  59 ++++
 hw/bsp/vbluno52/syscfg.yml                         | 102 +++++++
 hw/bsp/vbluno52/vbluno52_debug.cmd                 |  22 ++
 hw/bsp/vbluno52/vbluno52_debug.sh                  |  38 +++
 hw/bsp/vbluno52/vbluno52_download.cmd              |  22 ++
 hw/bsp/vbluno52/vbluno52_download.sh               |  49 ++++
 hw/bsp/vbluno52/vbluno52_no_boot.ld                | 191 +++++++++++++
 18 files changed, 1685 insertions(+)

-- 
To stop receiving notification emails like this one, please contact
"commits@mynewt.apache.org" <co...@mynewt.apache.org>.