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 2022/09/19 09:42:55 UTC

[mynewt-nimble] branch master updated (3b02d6ba -> 35583ac3)

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-nimble.git


    from 3b02d6ba nimble/ll: Remove nrf52 and nrf5340 phys
     new ce36b50a babblesim: Update dependency to phy
     new 35583ac3 babblesim: Print script errors to stderr

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:
 babblesim/hw/mcu/nordic/nrf52_bsim/pkg.yml | 2 +-
 babblesim/sdk/scripts/link_babblesim.sh    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


[mynewt-nimble] 01/02: babblesim: Update dependency to phy

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-nimble.git

commit ce36b50ae5efd3ceebf64c62a8ee5330802e3617
Author: Andrzej Kaczmarek <an...@codecoup.pl>
AuthorDate: Sat Sep 17 23:19:01 2022 +0200

    babblesim: Update dependency to phy
---
 babblesim/hw/mcu/nordic/nrf52_bsim/pkg.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/babblesim/hw/mcu/nordic/nrf52_bsim/pkg.yml b/babblesim/hw/mcu/nordic/nrf52_bsim/pkg.yml
index 99e59a26..5e4279b3 100644
--- a/babblesim/hw/mcu/nordic/nrf52_bsim/pkg.yml
+++ b/babblesim/hw/mcu/nordic/nrf52_bsim/pkg.yml
@@ -29,4 +29,4 @@ pkg.deps:
     - "babblesim/core"
 
 pkg.deps.BLE_CONTROLLER:
-    - "@apache-mynewt-nimble/nimble/drivers/nrf52"
+    - "@apache-mynewt-nimble/nimble/drivers/nrf5x"


[mynewt-nimble] 02/02: babblesim: Print script errors to stderr

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-nimble.git

commit 35583ac325d03136fce0801ef342d3a509502013
Author: Andrzej Kaczmarek <an...@codecoup.pl>
AuthorDate: Sat Sep 17 23:19:30 2022 +0200

    babblesim: Print script errors to stderr
---
 babblesim/sdk/scripts/link_babblesim.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/babblesim/sdk/scripts/link_babblesim.sh b/babblesim/sdk/scripts/link_babblesim.sh
index 9254a18a..1c069eb3 100755
--- a/babblesim/sdk/scripts/link_babblesim.sh
+++ b/babblesim/sdk/scripts/link_babblesim.sh
@@ -22,7 +22,7 @@ if [ -z ${BSIM_COMPONENTS_PATH+x} ]; then
   echo "This board requires the BabbleSim simulator. Please set" \
         "the environment variable BSIM_COMPONENTS_PATH to point to its components" \
         "folder. More information can be found in" \
-        "https://babblesim.github.io/folder_structure_and_env.html"
+        "https://babblesim.github.io/folder_structure_and_env.html" 1>&2
   exit 1
 fi
 
@@ -30,7 +30,7 @@ if [ -z ${BSIM_OUT_PATH+x} ]; then
   echo "This board requires the BabbleSim simulator. Please set" \
         "the environment variable BSIM_OUT_PATH to point to the folder where the" \
         "simulator is compiled to. More information can be found in" \
-        "https://babblesim.github.io/folder_structure_and_env.html"
+        "https://babblesim.github.io/folder_structure_and_env.html" 1>&2
   exit 1
 fi