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 2018/07/18 08:35:26 UTC

[mynewt-nimble] 01/01: Merge pull request #142 from michal-narajowski/mesh-storage-port

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

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

commit 88c3539fb5c5e6bf557f3eb28236593ded9f9131
Merge: 8edad8a ada0e73
Author: MichaƂ Narajowski <mi...@codecoup.pl>
AuthorDate: Wed Jul 18 10:35:23 2018 +0200

    Merge pull request #142 from michal-narajowski/mesh-storage-port
    
    Mesh sync with Zephyr (persistent storage)

 apps/blemesh/src/main.c                 |   10 +-
 apps/blemesh/syscfg.yml                 |    3 +
 apps/blemesh_light/src/main.c           |    8 +
 apps/blemesh_light/syscfg.yml           |    3 +
 apps/blemesh_shell/syscfg.yml           |    2 +
 nimble/host/mesh/include/mesh/access.h  |   22 +-
 nimble/host/mesh/include/mesh/cfg_srv.h |    4 +-
 nimble/host/mesh/include/mesh/glue.h    |   28 +-
 nimble/host/mesh/include/mesh/main.h    |   16 +-
 nimble/host/mesh/include/mesh/mesh.h    |    9 -
 nimble/host/mesh/include/mesh/testing.h |    2 +-
 nimble/host/mesh/pkg.yml                |    2 +
 nimble/host/mesh/src/access.c           |   66 +-
 nimble/host/mesh/src/access.h           |    9 +
 nimble/host/mesh/src/adv.c              |   31 +-
 nimble/host/mesh/src/adv.h              |   11 +-
 nimble/host/mesh/src/beacon.c           |   17 +-
 nimble/host/mesh/src/cfg_cli.c          |    1 +
 nimble/host/mesh/src/cfg_srv.c          |  359 +++++--
 nimble/host/mesh/src/foundation.h       |    8 +
 nimble/host/mesh/src/friend.c           |   30 +-
 nimble/host/mesh/src/glue.c             |   19 +
 nimble/host/mesh/src/health_cli.c       |    1 -
 nimble/host/mesh/src/mesh.c             |   63 +-
 nimble/host/mesh/src/mesh_priv.h        |    1 +
 nimble/host/mesh/src/net.c              |  155 ++-
 nimble/host/mesh/src/net.h              |   38 +-
 nimble/host/mesh/src/prov.c             |   31 +-
 nimble/host/mesh/src/settings.c         | 1575 +++++++++++++++++++++++++++++++
 nimble/host/mesh/src/settings.h         |   24 +
 nimble/host/mesh/src/shell.c            |   24 +-
 nimble/host/mesh/src/testing.c          |    2 +-
 nimble/host/mesh/src/transport.c        |  104 +-
 nimble/host/mesh/syscfg.yml             |   68 ++
 34 files changed, 2460 insertions(+), 286 deletions(-)