|
Non-binary SDK?
Dear Zephy development team,
your Getting Started Guide [1] tells at some point to download a SDK, make it
executable, run it:
Run the installation binary, type:
$ chmod +x
Dear Zephy development team,
your Getting Started Guide [1] tells at some point to download a SDK, make it
executable, run it:
Run the installation binary, type:
$ chmod +x
|
By
Oliver Hahm <oliver.hahm@...>
·
#2286
·
|
|
Re: Non-binary SDK?
Oleg,
you can also install without sudo in your home directory or any other location. The script will only extract the contents of the file.
We do have instructions on how to build the SDK
Oleg,
you can also install without sudo in your home directory or any other location. The script will only extract the contents of the file.
We do have instructions on how to build the SDK
|
By
Nashif, Anas
·
#2288
·
|
|
Re: Source the project environment file from zsh
Hi Oleg,
I think this can be fixed with:
diff --git a/zephyr-env.sh b/zephyr-env.sh
index dcb0638..d17780a 100644
--- a/zephyr-env.sh
+++ b/zephyr-env.sh
@@ -1,5 +1,5 @@
-if [ "X$(basename --
Hi Oleg,
I think this can be fixed with:
diff --git a/zephyr-env.sh b/zephyr-env.sh
index dcb0638..d17780a 100644
--- a/zephyr-env.sh
+++ b/zephyr-env.sh
@@ -1,5 +1,5 @@
-if [ "X$(basename --
|
By
Nashif, Anas
·
#2289
·
|
|
Build fails when the sdk is not installed in the default path in Archlinux.
Dear all,
Building the philosophers sample fails when the sdk is not installed under the default path (/opt/zephyr-sdk) in Archlinux with the following error:
make[1]: Entering directory
Dear all,
Building the philosophers sample fails when the sdk is not installed under the default path (/opt/zephyr-sdk) in Archlinux with the following error:
make[1]: Entering directory
|
By
Yannis Damigos
·
#2290
·
|
|
Re: Source the project environment file from zsh
Hi all,
The above did not work for me. The following worked
diff --git a/zephyr-env.sh b/zephyr-env.sh
index dcb0638..21eca53 100644
--- a/zephyr-env.sh
+++ b/zephyr-env.sh
@@ -1,5 +1,5 @@
-if [
Hi all,
The above did not work for me. The following worked
diff --git a/zephyr-env.sh b/zephyr-env.sh
index dcb0638..21eca53 100644
--- a/zephyr-env.sh
+++ b/zephyr-env.sh
@@ -1,5 +1,5 @@
-if [
|
By
Yannis Damigos
·
#2291
·
|
|
Re: Source the project environment file from zsh
Hi!
Thanks, that seems to work for zsh and bash.
Cheers,
Oleg
Hi!
Thanks, that seems to work for zsh and bash.
Cheers,
Oleg
|
By
Oliver Hahm <oliver.hahm@...>
·
#2292
·
|
|
Re: Source the project environment file from zsh
Hi!
I would love to, but somehow the page is not loading (neither in firefox nor
in iron).
Cheers,
Oleg
Hi!
I would love to, but somehow the page is not loading (neither in firefox nor
in iron).
Cheers,
Oleg
|
By
Oliver Hahm <oliver.hahm@...>
·
#2293
·
|
|
Re: Non-binary SDK?
Hi Anas!
Thanks for the fast response!
Thanks for the explanation and looking forward for the pointer.
That's what I somehow assumed. Would be good to know, which variables have to
be set to use
Hi Anas!
Thanks for the fast response!
Thanks for the explanation and looking forward for the pointer.
That's what I somehow assumed. Would be good to know, which variables have to
be set to use
|
By
Oliver Hahm <oliver.hahm@...>
·
#2294
·
|
|
Re: RFC: make _fiber_start() return a handle on the fiber
Hi Ben,
I am a bit busy right now so I am fine if you do it.
Cheers,
Jukka
Hi Ben,
I am a bit busy right now so I am fine if you do it.
Cheers,
Jukka
|
By
Jukka Rissanen
·
#2295
·
|
|
Re: Source the project environment file from zsh
Hi,
I filed the bug in jira.
https://jira.zephyrproject.org/browse/ZEP-64
Yannis
Hi,
I filed the bug in jira.
https://jira.zephyrproject.org/browse/ZEP-64
Yannis
|
By
Yannis Damigos
·
#2296
·
|
|
Re: Build fails when the sdk is not installed in the default path in Archlinux.
Is ZEPHYR_SDK_INSTALL_DIR pointing to the SDK install directory?
Is ZEPHYR_SDK_INSTALL_DIR pointing to the SDK install directory?
|
By
Dirk Brandewie <dirk.j.brandewie@...>
·
#2297
·
|
|
Re: How to setup git-review
Forcing people to use git-review is not the intent. Using git-review
eases the cognitive burden of working inside the enforced gerrit worfklow.
Tell me, which would you find easier to do /
Forcing people to use git-review is not the intent. Using git-review
eases the cognitive burden of working inside the enforced gerrit worfklow.
Tell me, which would you find easier to do /
|
By
Andrew Grimberg <agrimberg@...>
·
#2298
·
|
|
Re: RFC: return type of functions passed to DEVICE_INIT()
It would take more RAM :-) Not sure exactly what you would want to
return in the status? If device init() fails there is nothing the
application code can do about it other that fail gracefully.
If
It would take more RAM :-) Not sure exactly what you would want to
return in the status? If device init() fails there is nothing the
application code can do about it other that fail gracefully.
If
|
By
Dirk Brandewie <dirk.j.brandewie@...>
·
#2299
·
|
|
Re: RFC: return type of functions passed to DEVICE_INIT()
_sys_device_do_config_level() is *not* a public API and is *not*
guaranteed be stable or even exist from release to release.
AFAIK calling _sys_device_do_config_level() again would not break any
_sys_device_do_config_level() is *not* a public API and is *not*
guaranteed be stable or even exist from release to release.
AFAIK calling _sys_device_do_config_level() again would not break any
|
By
Dirk Brandewie <dirk.j.brandewie@...>
·
#2300
·
|
|
Re: Build fails when the sdk is not installed in the default path in Archlinux.
Yes, ZEPHYR_SDK_INSTALL_DIR is pointing to the correct SDK install directory.
Yes, ZEPHYR_SDK_INSTALL_DIR is pointing to the correct SDK install directory.
|
By
Yannis Damigos
·
#2301
·
|
|
Re: Build fails when the sdk is not installed in the default path in Archlinux.
Hmmm :-/ Can you send the output of the make command adding V=1 to the
command line?
Hmmm :-/ Can you send the output of the make command adding V=1 to the
command line?
|
By
Dirk Brandewie <dirk.j.brandewie@...>
·
#2302
·
|
|
Re: Build fails when the sdk is not installed in the default path in Archlinux.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Here it is https://gist.github.com/xekarfwtos/78d9c85f018ed2a0ce4b
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Here it is https://gist.github.com/xekarfwtos/78d9c85f018ed2a0ce4b
|
By
Yannis Damigos
·
#2303
·
|
|
Re: RFC: make _fiber_start() return a handle on the fiber
For what it is worth, I am currently tackling this item.
Peter
For what it is worth, I am currently tackling this item.
Peter
|
By
Mitsis, Peter <Peter.Mitsis@...>
·
#2304
·
|
|
Re: Build fails when the sdk is not installed in the default path in Archlinux.
Hmm looks like an SDK issue :-( I have created a bug for it
https://jira.zephyrproject.org/browse/ZEP-65
I don't have any more useful advice unfortunately.
--Dirk
Hmm looks like an SDK issue :-( I have created a bug for it
https://jira.zephyrproject.org/browse/ZEP-65
I don't have any more useful advice unfortunately.
--Dirk
|
By
Dirk Brandewie <dirk.j.brandewie@...>
·
#2305
·
|
|
Do the Zephyr support Z-Wave, Zigbee Connectivity?
Dear all.
First, I welcome the zephyr. This will be a great help for developer.
As You know, the number of wireless communication is currently an
increasing..
Not only Wi-Fi, BT/BLE but Z-Wave,
Dear all.
First, I welcome the zephyr. This will be a great help for developer.
As You know, the number of wireless communication is currently an
increasing..
Not only Wi-Fi, BT/BLE but Z-Wave,
|
By
JongWoon Lee <sharkvary@...>
·
#2306
·
|