You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by na...@apache.org on 2019/01/31 16:50:39 UTC

[mynewt-nimble] branch master updated (aebc46f -> 58ed664)

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

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


    from aebc46f  porting/linux: Fix missing MYNEWT_VAL define
     new 4e307a4  mesh: Fix unused variable error when PB_ADV and PB_GATT disabled
     new 3b3b92b  mesh: Add macros to encoded model publication periods
     new 8799108  mesh/transport: Reformat SeqAuth calculation fix
     new 07f712c  mesh: Move Device UUID log to bt_mesh_prov_enable()
     new 4f1dbf8  mesh: Remove commented out lines
     new 2bcb0dd  mesh: Fix checking for subnet when recovering App Key
     new 0e18a15  mesh: Fix missing semicolon
     new 4a2884b  mesh: Fix incorrect reference to BT_SETTINGS
     new 4df2f15  mesh: Enforce proper compilation.
     new 1fef5a8  mesh: Increase scan window from 10ms to 30ms
     new 1630de1  mesh: Fix matching for all elements of an LPN
     new 9b77b4c  mesh: Add header file support for C++
     new 0b18846  mesh: Fix typo leading to incorrect settings storage
     new a25ef60  mesh: Fixes existing friend lookup in Friend Request handling
     new 7879438  mesh: Remove redundant stack variable
     new 54286e1  mesh: Convert bit-fields into flags
     new c2c5cd4  mesh: Clean up net validity & provisioning state handling
     new d42c018  mesh: Fix publish timer handling when sending fails
     new 7cf84d5  mesh: Fix publish timer handling when sending fails
     new 58ed664  mesh: Take advantage of net_buf_simple_pull_mem()

The 3077 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:
 nimble/host/mesh/include/mesh/access.h     |   8 ++
 nimble/host/mesh/include/mesh/cfg_cli.h    |  49 ++++++++++++
 nimble/host/mesh/include/mesh/cfg_srv.h    |   7 ++
 nimble/host/mesh/include/mesh/glue.h       |  10 ++-
 nimble/host/mesh/include/mesh/health_cli.h |   8 ++
 nimble/host/mesh/include/mesh/health_srv.h |   8 ++
 nimble/host/mesh/include/mesh/main.h       |  29 +++++++
 nimble/host/mesh/include/mesh/model_cli.h  |   8 ++
 nimble/host/mesh/include/mesh/model_srv.h  |   8 ++
 nimble/host/mesh/include/mesh/porting.h    |   8 ++
 nimble/host/mesh/include/mesh/proxy.h      |   8 ++
 nimble/host/mesh/src/access.c              |   3 +
 nimble/host/mesh/src/adv.c                 |   9 ++-
 nimble/host/mesh/src/atomic.h              |  23 ++++++
 nimble/host/mesh/src/beacon.c              |  14 ++--
 nimble/host/mesh/src/cfg_srv.c             |  28 +++----
 nimble/host/mesh/src/foundation.h          |   1 +
 nimble/host/mesh/src/friend.c              |  38 ++++-----
 nimble/host/mesh/src/glue.c                |   9 +++
 nimble/host/mesh/src/health_srv.c          |   2 +-
 nimble/host/mesh/src/lpn.c                 |   5 +-
 nimble/host/mesh/src/mesh.c                | 121 ++++++++++++++++++++++++++---
 nimble/host/mesh/src/net.c                 |  41 +++++-----
 nimble/host/mesh/src/net.h                 |  24 +++---
 nimble/host/mesh/src/prov.c                |   6 +-
 nimble/host/mesh/src/proxy.c               |  33 +++++++-
 nimble/host/mesh/src/settings.c            |  30 +++----
 nimble/host/mesh/src/transport.c           |  26 ++++---
 28 files changed, 444 insertions(+), 120 deletions(-)