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 2018/05/02 20:41:17 UTC

[mynewt-core] branch master updated (227f79f -> b958461)

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 227f79f  Merge pull request #919 from rymanluk/mesh_sim_fix
     add f758125  net/lora: Add new region support
     add 4268d08  net/lora Change public/private network default setting to private.
     add 918bce8  net/lora Fix incorrect elapsed time when sending join requests
     add 5b951e1  net/lora: Add lora node cli debug command.
     new b958461  Merge pull request #1059 from wes3/newlora

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:
 apps/lora_app_shell/src/las_cmd.c                  |  121 +-
 apps/lora_app_shell/src/main.c                     |    2 +-
 hw/drivers/lora/sx1272/include/radio/radio.h       |  132 +-
 hw/drivers/lora/sx1272/src/sx1272-board.c          |   10 +-
 hw/drivers/lora/sx1272/src/sx1272-board.h          |    7 +
 hw/drivers/lora/sx1272/src/sx1272.c                |   35 +-
 hw/drivers/lora/sx1272/src/sx1272.h                |   18 +-
 hw/drivers/lora/sx1276/include/radio/radio.h       |  132 +-
 hw/drivers/lora/sx1276/src/sx1276-board.c          |   10 +-
 hw/drivers/lora/sx1276/src/sx1276-board.h          |    2 +-
 hw/drivers/lora/sx1276/src/sx1276.c                |   36 +-
 hw/drivers/lora/sx1276/src/sx1276.h                |   38 +-
 net/lora/node/include/node/lora.h                  |   10 +-
 net/lora/node/include/node/lora_band.h             |   61 +-
 net/lora/node/include/node/lora_priv.h             |  136 +-
 .../node/include/node/mac/LoRaMac-definitions.h    |  610 ---
 net/lora/node/include/node/mac/LoRaMac.h           |  457 ++-
 net/lora/node/include/node/mac/Region.h            | 1479 +++++++
 net/lora/node/include/node/utilities.h             |  101 +-
 net/lora/node/pkg.yml                              |    6 +-
 net/lora/node/src/lora_cli.c                       |  152 +-
 net/lora/node/src/lora_node.c                      |   12 +-
 net/lora/node/src/mac/LoRaMac.c                    | 4247 +++++++-------------
 net/lora/node/src/mac/region/Region.c              | 1036 +++++
 net/lora/node/src/mac/region/RegionAS923.c         | 1094 +++++
 net/lora/node/src/mac/region/RegionAS923.h         |  505 +++
 net/lora/node/src/mac/region/RegionAU915.c         |  854 ++++
 net/lora/node/src/mac/region/RegionAU915.h         |  457 +++
 net/lora/node/src/mac/region/RegionCN470.c         |  774 ++++
 net/lora/node/src/mac/region/RegionCN470.h         |  443 ++
 net/lora/node/src/mac/region/RegionCN779.c         | 1013 +++++
 net/lora/node/src/mac/region/RegionCN779.h         |  467 +++
 net/lora/node/src/mac/region/RegionCommon.c        |  373 ++
 net/lora/node/src/mac/region/RegionCommon.h        |  370 ++
 net/lora/node/src/mac/region/RegionEU433.c         | 1013 +++++
 net/lora/node/src/mac/region/RegionEU433.h         |  468 +++
 net/lora/node/src/mac/region/RegionEU868.c         | 1050 +++++
 net/lora/node/src/mac/region/RegionEU868.h         |  489 +++
 net/lora/node/src/mac/region/RegionIN865.c         | 1033 +++++
 net/lora/node/src/mac/region/RegionIN865.h         |  470 +++
 net/lora/node/src/mac/region/RegionKR920.c         | 1014 +++++
 net/lora/node/src/mac/region/RegionKR920.h         |  480 +++
 net/lora/node/src/mac/region/RegionUS915-Hybrid.c  |  956 +++++
 net/lora/node/src/mac/region/RegionUS915-Hybrid.h  |  450 +++
 net/lora/node/src/mac/region/RegionUS915.c         |  863 ++++
 net/lora/node/src/mac/region/RegionUS915.h         |  450 +++
 net/lora/node/src/utilities.c                      |   14 +-
 net/lora/node/syscfg.yml                           |   35 +-
 48 files changed, 20165 insertions(+), 3820 deletions(-)
 delete mode 100644 net/lora/node/include/node/mac/LoRaMac-definitions.h
 create mode 100644 net/lora/node/include/node/mac/Region.h
 create mode 100644 net/lora/node/src/mac/region/Region.c
 create mode 100644 net/lora/node/src/mac/region/RegionAS923.c
 create mode 100644 net/lora/node/src/mac/region/RegionAS923.h
 create mode 100644 net/lora/node/src/mac/region/RegionAU915.c
 create mode 100644 net/lora/node/src/mac/region/RegionAU915.h
 create mode 100644 net/lora/node/src/mac/region/RegionCN470.c
 create mode 100644 net/lora/node/src/mac/region/RegionCN470.h
 create mode 100644 net/lora/node/src/mac/region/RegionCN779.c
 create mode 100644 net/lora/node/src/mac/region/RegionCN779.h
 create mode 100644 net/lora/node/src/mac/region/RegionCommon.c
 create mode 100644 net/lora/node/src/mac/region/RegionCommon.h
 create mode 100644 net/lora/node/src/mac/region/RegionEU433.c
 create mode 100644 net/lora/node/src/mac/region/RegionEU433.h
 create mode 100644 net/lora/node/src/mac/region/RegionEU868.c
 create mode 100644 net/lora/node/src/mac/region/RegionEU868.h
 create mode 100644 net/lora/node/src/mac/region/RegionIN865.c
 create mode 100644 net/lora/node/src/mac/region/RegionIN865.h
 create mode 100644 net/lora/node/src/mac/region/RegionKR920.c
 create mode 100644 net/lora/node/src/mac/region/RegionKR920.h
 create mode 100644 net/lora/node/src/mac/region/RegionUS915-Hybrid.c
 create mode 100644 net/lora/node/src/mac/region/RegionUS915-Hybrid.h
 create mode 100644 net/lora/node/src/mac/region/RegionUS915.c
 create mode 100644 net/lora/node/src/mac/region/RegionUS915.h

-- 
To stop receiving notification emails like this one, please contact
wes3@apache.org.

[mynewt-core] 01/01: Merge pull request #1059 from wes3/newlora

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 b958461852d8681af3b976e5f8d8d0e0dd3dd662
Merge: 227f79f 5b951e1
Author: wes3 <wi...@runtime.io>
AuthorDate: Wed May 2 13:41:13 2018 -0700

    Merge pull request #1059 from wes3/newlora
    
    Add region support to lora code

 apps/lora_app_shell/src/las_cmd.c                  |  121 +-
 apps/lora_app_shell/src/main.c                     |    2 +-
 hw/drivers/lora/sx1272/include/radio/radio.h       |  132 +-
 hw/drivers/lora/sx1272/src/sx1272-board.c          |   10 +-
 hw/drivers/lora/sx1272/src/sx1272-board.h          |    7 +
 hw/drivers/lora/sx1272/src/sx1272.c                |   35 +-
 hw/drivers/lora/sx1272/src/sx1272.h                |   18 +-
 hw/drivers/lora/sx1276/include/radio/radio.h       |  132 +-
 hw/drivers/lora/sx1276/src/sx1276-board.c          |   10 +-
 hw/drivers/lora/sx1276/src/sx1276-board.h          |    2 +-
 hw/drivers/lora/sx1276/src/sx1276.c                |   36 +-
 hw/drivers/lora/sx1276/src/sx1276.h                |   38 +-
 net/lora/node/include/node/lora.h                  |   10 +-
 net/lora/node/include/node/lora_band.h             |   61 +-
 net/lora/node/include/node/lora_priv.h             |  136 +-
 .../node/include/node/mac/LoRaMac-definitions.h    |  610 ---
 net/lora/node/include/node/mac/LoRaMac.h           |  457 ++-
 net/lora/node/include/node/mac/Region.h            | 1479 +++++++
 net/lora/node/include/node/utilities.h             |  101 +-
 net/lora/node/pkg.yml                              |    6 +-
 net/lora/node/src/lora_cli.c                       |  152 +-
 net/lora/node/src/lora_node.c                      |   12 +-
 net/lora/node/src/mac/LoRaMac.c                    | 4247 +++++++-------------
 net/lora/node/src/mac/region/Region.c              | 1036 +++++
 net/lora/node/src/mac/region/RegionAS923.c         | 1094 +++++
 net/lora/node/src/mac/region/RegionAS923.h         |  505 +++
 net/lora/node/src/mac/region/RegionAU915.c         |  854 ++++
 net/lora/node/src/mac/region/RegionAU915.h         |  457 +++
 net/lora/node/src/mac/region/RegionCN470.c         |  774 ++++
 net/lora/node/src/mac/region/RegionCN470.h         |  443 ++
 net/lora/node/src/mac/region/RegionCN779.c         | 1013 +++++
 net/lora/node/src/mac/region/RegionCN779.h         |  467 +++
 net/lora/node/src/mac/region/RegionCommon.c        |  373 ++
 net/lora/node/src/mac/region/RegionCommon.h        |  370 ++
 net/lora/node/src/mac/region/RegionEU433.c         | 1013 +++++
 net/lora/node/src/mac/region/RegionEU433.h         |  468 +++
 net/lora/node/src/mac/region/RegionEU868.c         | 1050 +++++
 net/lora/node/src/mac/region/RegionEU868.h         |  489 +++
 net/lora/node/src/mac/region/RegionIN865.c         | 1033 +++++
 net/lora/node/src/mac/region/RegionIN865.h         |  470 +++
 net/lora/node/src/mac/region/RegionKR920.c         | 1014 +++++
 net/lora/node/src/mac/region/RegionKR920.h         |  480 +++
 net/lora/node/src/mac/region/RegionUS915-Hybrid.c  |  956 +++++
 net/lora/node/src/mac/region/RegionUS915-Hybrid.h  |  450 +++
 net/lora/node/src/mac/region/RegionUS915.c         |  863 ++++
 net/lora/node/src/mac/region/RegionUS915.h         |  450 +++
 net/lora/node/src/utilities.c                      |   14 +-
 net/lora/node/syscfg.yml                           |   35 +-
 48 files changed, 20165 insertions(+), 3820 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
wes3@apache.org.