You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ut...@apache.org on 2020/01/09 09:38:43 UTC

[mynewt-core] branch master updated (382ebd6 -> 1cfa2d1)

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

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


    from 382ebd6  bsp: b-l072z-lrwan1: use sane defaults for lora HW
     new 471f837  lorashell: update max number of cli args
     new 1cfa2d1  loraping: remove bootloader/mgmt dependencies

The 2 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/loraping/pkg.yml     | 6 ------
 apps/lorashell/syscfg.yml | 1 +
 2 files changed, 1 insertion(+), 6 deletions(-)


[mynewt-core] 01/02: lorashell: update max number of cli args

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

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

commit 471f837773f0b73d4174eb16487644e4a0ba49ed
Author: Fabio Utzig <ut...@apache.org>
AuthorDate: Wed Jan 8 13:00:24 2020 -0300

    lorashell: update max number of cli args
    
    Allow "lora rx_cfg" command to work by increasing the maximum number of
    parameters the shell is able to process.
    
    Signed-off-by: Fabio Utzig <ut...@apache.org>
---
 apps/lorashell/syscfg.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/apps/lorashell/syscfg.yml b/apps/lorashell/syscfg.yml
index a3953d0..fef99d2 100644
--- a/apps/lorashell/syscfg.yml
+++ b/apps/lorashell/syscfg.yml
@@ -27,3 +27,4 @@ syscfg.vals:
     STATS_NAMES: 1
     SHELL_TASK: 1
     LORA_NODE_CLI: 1
+    SHELL_CMD_ARGC_MAX: 16


[mynewt-core] 02/02: loraping: remove bootloader/mgmt dependencies

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

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

commit 1cfa2d17c4a6da293bd7e134dfd5a8447f42c10a
Author: Fabio Utzig <ut...@apache.org>
AuthorDate: Wed Jan 8 13:01:24 2020 -0300

    loraping: remove bootloader/mgmt dependencies
    
    Some dependencies don't seem necessary for this sample app, and removing
    them allows for use in constrained devices (eg, b-l072z-lrwan1 with 72K
    slots).
    
    Signed-off-by: Fabio Utzig <ut...@apache.org>
---
 apps/loraping/pkg.yml | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/apps/loraping/pkg.yml b/apps/loraping/pkg.yml
index b6daae2..f89e96c 100644
--- a/apps/loraping/pkg.yml
+++ b/apps/loraping/pkg.yml
@@ -25,19 +25,13 @@ pkg.homepage: "http://mynewt.apache.org/"
 pkg.keywords:
 
 pkg.deps:
-    - "@mcuboot/boot/bootutil"
-    - "@apache-mynewt-core/boot/split"
     - "@apache-mynewt-core/kernel/os"
-    - "@apache-mynewt-core/mgmt/imgmgr"
-    - "@apache-mynewt-core/mgmt/smp"
-    - "@apache-mynewt-core/mgmt/smp/transport/smp_shell"
     - "@apache-mynewt-core/sys/config"
     - "@apache-mynewt-core/sys/console/full"
     - "@apache-mynewt-core/sys/id"
     - "@apache-mynewt-core/sys/log/full"
     - "@apache-mynewt-core/sys/shell"
     - "@apache-mynewt-core/sys/stats/full"
-    - "@apache-mynewt-core/test/flash_test"
 
 pkg.deps.CONFIG_NFFS:
     - "@apache-mynewt-core/fs/nffs"