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

[mynewt-core] branch master updated (813c374 -> b609a10)

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

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


    from 813c374  Merge pull request #399 from kasjer/risc-v
     add 7c2c8c4  nimble/monitor: Add monitor interface over UART
     add 658bbc4  nimble/monitor: Add monitor interface over RTT
     add 72f911c  nimble/monitor: Add call to log via monitor interface
     add 43076e6  nimble/monitor: Add call to output text via monitor interface
     add b024332  console: Add console output via monitor interface
     add e54736d  nimble/monitor: Add intermediate buffer option for RTT
     add 7d25b56  nimble: Disable HCI logs when monitor is enabled
     add 8115e3e  sys/baselibc: Cleanup in tinyprintf
     add 6b70223  sys/baselibc: Fix vsnprintf with size=0
     add 65c9cfd  nimble/monitor: Add delay in UART queue flush
     add 03e6119  nimble/monitor: Fix coding style
     add 9a6071d  nimble/monitor: Make UART device configurable in syscfg
     add c4826c0  nimble/monitor: Make RTT upstream buffer name configurable
     add dc88539  nimble/monitor: Make controller name static
     add 8de5cbb  nimble/monitor: Use vsnprintf to calculate characters in log message
     new b609a10  Merge pull request #372 from andrzej-kaczmarek/btmon_core

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:
 libc/baselibc/src/tinyprintf.c                     |  12 +-
 .../nimble/host/include/host/ble_monitor.h         |  18 +-
 net/nimble/host/pkg.yml                            |   3 +
 net/nimble/host/src/ble_hs.c                       |  23 ++
 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/syscfg.yml                         |  25 ++
 .../console/full/src/ble_monitor_console.c         |  26 +-
 sys/console/full/src/console.c                     |   3 +
 sys/console/full/src/console_priv.h                |   1 +
 sys/console/full/syscfg.yml                        |   3 +
 17 files changed, 584 insertions(+), 27 deletions(-)
 copy kernel/os/include/os/os_malloc.h => net/nimble/host/include/host/ble_monitor.h (77%)
 create mode 100644 net/nimble/host/src/ble_monitor.c
 create mode 100644 net/nimble/host/src/ble_monitor_priv.h
 copy hw/mcu/sifive/fe310/src/init.c => sys/console/full/src/ble_monitor_console.c (74%)

-- 
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 #372 from andrzej-kaczmarek/btmon_core

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

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

commit b609a1017593bb5e3ab54e472e2ee1bbf27719ea
Merge: 813c374 8de5cbb
Author: Andrzej Kaczmarek <an...@codecoup.pl>
AuthorDate: Tue Jul 11 22:21:40 2017 +0200

    Merge pull request #372 from andrzej-kaczmarek/btmon_core
    
    nimble: add monitor protocol/interface

 libc/baselibc/src/tinyprintf.c                     |  12 +-
 .../nimble/host/include/host/ble_monitor.h         |  22 +-
 net/nimble/host/pkg.yml                            |   3 +
 net/nimble/host/src/ble_hs.c                       |  23 ++
 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/syscfg.yml                         |  25 ++
 .../src/{console_priv.h => ble_monitor_console.c}  |  31 +-
 sys/console/full/src/console.c                     |   3 +
 sys/console/full/src/console_priv.h                |   1 +
 sys/console/full/syscfg.yml                        |   3 +
 17 files changed, 592 insertions(+), 28 deletions(-)


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