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

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

commit 8f10649209aa1ab570276c8ff91ad72458faa8b9
Merge: 6bedbc0 590e8a7
Author: Szymon Janc <szymon.j...@codecoup.pl>
AuthorDate: Thu Jul 13 12:13:24 2017 +0200

    Merge pull request #409 from sjanc/bluetooth5_master
    
    merge master into bluetooth5

 apps/blecent/src/blecent.h                         |    5 -
 apps/bleprph_oic/src/main.c                        |    2 +-
 apps/bletiny/src/gatt_svr.c                        |    9 -
 apps/btshell/src/gatt_svr.c                        |    9 -
 apps/testbench/src/tbb.c                           |    8 +-
 .../syscfg.yml => compiler/riscv64/compiler.yml    |   36 +-
 {net/nimble/host => compiler/riscv64}/pkg.yml      |   34 +-
 hw/bsp/hifive1/bsp.yml                             |   61 +
 hw/bsp/hifive1/hifive1.ld                          |  180 +++
 .../ble_ll_test.c => hw/bsp/hifive1/hifive1_app.ld |   23 +-
 .../bsp/hifive1/hifive1_boot.ld                    |   23 +-
 .../pkg.yml => hw/bsp/hifive1/hifive1_debug.sh     |   46 +-
 hw/bsp/hifive1/hifive1_download.sh                 |   47 +
 hw/bsp/hifive1/include/bsp/bsp.h                   |   88 ++
 {net/nimble/host => hw/bsp/hifive1}/pkg.yml        |   31 +-
 hw/bsp/hifive1/riscv_openocd.cfg                   |   53 +
 hw/bsp/hifive1/src/hal_bsp.c                       |  118 ++
 hw/bsp/hifive1/src/sbrk.c                          |   59 +
 hw/{sensor => bsp/hifive1}/syscfg.yml              |   37 +-
 hw/bsp/ruuvi_tag_revb2/pkg.yml                     |    4 +
 hw/bsp/ruuvi_tag_revb2/src/hal_bsp.c               |   48 +
 hw/bsp/ruuvi_tag_revb2/syscfg.yml                  |    4 +
 hw/drivers/sensors/bme280/src/bme280.c             |    2 +-
 .../sensors/lis2dh12/include/lis2dh12/lis2dh12.h   |  188 +++
 .../host => hw/drivers/sensors/lis2dh12}/pkg.yml   |   33 +-
 hw/drivers/sensors/lis2dh12/src/lis2dh12.c         |  866 +++++++++++++
 hw/drivers/sensors/lis2dh12/src/lis2dh12_priv.h    |  213 ++++
 .../drivers/sensors/lis2dh12/syscfg.yml            |   36 +-
 .../mcu/sifive/fe310/include/mcu/fe310.h           |   15 +-
 hw/mcu/sifive/fe310/include/mcu/fe310_hal.h        |   58 +
 .../mcu/sifive/fe310/include/mcu/plic.h            |   28 +-
 hw/mcu/sifive/fe310/include/mcu/sys_clock.h        |   69 +
 {net/nimble/host => hw/mcu/sifive/fe310}/pkg.yml   |   31 +-
 hw/mcu/sifive/fe310/src/arch/rv32imac/start.s      |   73 ++
 hw/mcu/sifive/fe310/src/hal_flash.c                |  281 +++++
 hw/mcu/sifive/fe310/src/hal_gpio.c                 |  283 +++++
 .../mcu/sifive/fe310/src/hal_os_tick.c             |   48 +-
 .../mcu/sifive/fe310/src/hal_reset_cause.c         |   35 +-
 .../mcu/sifive/fe310/src/hal_system.c              |   28 +-
 .../mcu/sifive/fe310/src/hal_system_start.c        |   27 +-
 hw/mcu/sifive/fe310/src/hal_timer.c                |  440 +++++++
 hw/mcu/sifive/fe310/src/hal_uart.c                 |  288 +++++
 hw/mcu/sifive/fe310/src/hal_watchdog.c             |  107 ++
 .../mcu/sifive/fe310/src/init.c                    |   31 +-
 hw/mcu/sifive/fe310/src/plic.c                     |   66 +
 hw/mcu/sifive/fe310/src/sys_clock.c                |  198 +++
 hw/mcu/sifive/fe310/syscfg.yml                     |   50 +
 {net/nimble/host => hw/mcu/sifive}/pkg.yml         |   32 +-
 .../sifive/src/ext/freedom-e-sdk_3235929/LICENSE   |  206 +++
 .../ext/freedom-e-sdk_3235929/bsp/env/encoding.h   | 1313 ++++++++++++++++++++
 .../bsp/env/freedom-e300-hifive1/platform.h        |  137 ++
 .../ext/freedom-e-sdk_3235929/bsp/env/hifive1.h    |   81 ++
 .../bsp/include/sifive/bits.h                      |   36 +
 .../bsp/include/sifive/const.h                     |   18 +
 .../bsp/include/sifive/devices/aon.h               |   88 ++
 .../bsp/include/sifive/devices/clint.h             |   14 +
 .../bsp/include/sifive/devices/gpio.h              |   24 +
 .../bsp/include/sifive/devices/otp.h               |   23 +
 .../bsp/include/sifive/devices/plic.h              |   31 +
 .../bsp/include/sifive/devices/prci.h              |   56 +
 .../bsp/include/sifive/devices/pwm.h               |   37 +
 .../bsp/include/sifive/devices/spi.h               |   80 ++
 .../bsp/include/sifive/devices/uart.h              |   27 +
 .../bsp/include/sifive/sections.h                  |   17 +
 .../freedom-e-sdk_3235929/bsp/include/sifive/smp.h |   65 +
 hw/scripts/openocd.sh                              |   18 +-
 hw/sensor/include/sensor/sensor.h                  |    5 +
 hw/sensor/src/sensor_oic.c                         |    2 +-
 hw/sensor/syscfg.yml                               |    4 +-
 kernel/os/include/os/arch/rv32imac/os/os_arch.h    |   83 ++
 kernel/os/src/arch/rv32imac/ctx.s                  |  231 ++++
 kernel/os/src/arch/rv32imac/os_arch_rv32imac.c     |  278 +++++
 .../os/src/arch/rv32imac/os_fault.c                |   39 +-
 libc/baselibc/src/sprintf.c                        |    3 +-
 libc/baselibc/src/tinyprintf.c                     |   15 +-
 libc/baselibc/src/vsprintf.c                       |    3 +-
 .../controller/include/controller/ble_ll_adv.h     |    2 +-
 net/nimble/controller/src/ble_ll_adv.c             |    6 +-
 net/nimble/controller/src/ble_ll_sched.c           |    2 +-
 net/nimble/controller/test/src/ble_ll_test.c       |    6 +-
 net/nimble/host/include/host/ble_gap.h             |   17 +-
 net/nimble/host/include/host/ble_gatt.h            |   34 -
 .../nimble/host/include/host/ble_monitor.h         |   22 +-
 net/nimble/host/pkg.yml                            |    3 +
 net/nimble/host/src/ble_att.c                      |    6 +-
 net/nimble/host/src/ble_gap.c                      |    4 +-
 net/nimble/host/src/ble_gap_priv.h                 |    5 +
 net/nimble/host/src/ble_gatt_priv.h                |   32 +
 net/nimble/host/src/ble_gatts.c                    |    2 +-
 net/nimble/host/src/ble_hs.c                       |   39 +-
 net/nimble/host/src/ble_hs_dbg.c                   |    3 +-
 net/nimble/host/src/ble_hs_hci.c                   |   12 +
 net/nimble/host/src/ble_hs_hci_cmd.c               |   10 +
 net/nimble/host/src/ble_hs_hci_evt.c               |    3 +
 net/nimble/host/src/ble_hs_priv.h                  |    3 +-
 net/nimble/host/src/ble_l2cap_sig.c                |    6 +
 net/nimble/host/src/ble_monitor.c                  |  373 ++++++
 net/nimble/host/src/ble_monitor_priv.h             |   87 ++
 net/nimble/host/src/ble_uuid.c                     |   42 +
 net/nimble/host/syscfg.yml                         |   25 +
 net/oic/include/oic/oc_api.h                       |    2 +
 net/oic/include/oic/oc_gatt.h                      |    8 +-
 net/oic/include/oic/oc_ri.h                        |    2 +-
 net/oic/src/api/oc_ri.c                            |    6 +-
 net/oic/src/api/oc_server_api.c                    |   11 +-
 net/oic/src/port/mynewt/ble_adaptor.c              |    2 +-
 .../console/full/src/ble_monitor_console.c         |   27 +-
 sys/console/full/src/console.c                     |    3 +
 sys/console/full/src/console_priv.h                |    1 +
 sys/console/full/syscfg.yml                        |    3 +
 110 files changed, 7706 insertions(+), 488 deletions(-)

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

Reply via email to