|
Re: Flash configuration in dts file
Thank you for your answer.
However when I did like you (see below first case) the configuration is not good.
Indeed the application starts correctly but CONFIG_FLASH_LOAD_SIZE is set to 0 :
First
Thank you for your answer.
However when I did like you (see below first case) the configuration is not good.
Indeed the application starts correctly but CONFIG_FLASH_LOAD_SIZE is set to 0 :
First
|
By
Laurence Pasteau
·
#4962
·
|
|
Re: Cpp support on Zephyr
#gettingstartedguide
Hi,
You can check project: tests/application_development/cpp
AFAIK it is possible to build openthread written in C++ for Zephyr if
you want more complex example.
Best regards
Andrei Emeltchenko
Hi,
You can check project: tests/application_development/cpp
AFAIK it is possible to build openthread written in C++ for Zephyr if
you want more complex example.
Best regards
Andrei Emeltchenko
|
By
Andrei
·
#4961
·
|
|
C++ compile error
Hi,
I am getting the following error while I want to compile my c++ project.
The CMAKE_CXX_COMPILER:
c:/gccarmemb/bin/arm-none-eabi-g++
is not a full path to an existing compiler tool.
Hi,
I am getting the following error while I want to compile my c++ project.
The CMAKE_CXX_COMPILER:
c:/gccarmemb/bin/arm-none-eabi-g++
is not a full path to an existing compiler tool.
|
By
miem@...
·
#4960
·
|
|
Re: Zephyr IPv6 default router / prefix networking options
Hi Michael,
This would be most standard configuration but as you said, if the
network is very tiny it is kind of overkill to use radvd. But if you
are moving the device around, then this is
Hi Michael,
This would be most standard configuration but as you said, if the
network is very tiny it is kind of overkill to use radvd. But if you
are moving the device around, then this is
|
By
Jukka Rissanen
·
#4959
·
|
|
Re: Enable SPI driver on nrf52840
Hi,
The drivers are not experimental, you can use both I2C and SPI. Have you tried different instances of the peripherals?
i.e. I2C_0 and SPI_1 ?
If you are facing an issue, do provide
Hi,
The drivers are not experimental, you can use both I2C and SPI. Have you tried different instances of the peripherals?
i.e. I2C_0 and SPI_1 ?
If you are facing an issue, do provide
|
By
Chettimada, Vinayak Kariappa
·
#4958
·
|
|
Breaking changes to network config settings
Hello,
For the 1.13 release, networking configuration library ("net_conf") was
split from net_app library, because it always was independent from the
rest of net_app, and is useful even for apps
Hello,
For the 1.13 release, networking configuration library ("net_conf") was
split from net_app library, because it always was independent from the
rest of net_app, and is useful even for apps
|
By
Paul Sokolovsky
·
#4957
·
|
|
Enable SPI driver on nrf52840
Has anyone successfully enabled spi driver on the nordic nrf52840_pca10056? I2c seems
to work great, but I need both for an upcoming project. I see the drivers are
in place, but its not enabled in
Has anyone successfully enabled spi driver on the nordic nrf52840_pca10056? I2c seems
to work great, but I need both for an upcoming project. I see the drivers are
in place, but its not enabled in
|
By
cpmcparland@...
·
#4956
·
|
|
Zephyr IPv6 default router / prefix networking options
Hello Devs,
I'd like to discuss some different approaches to a simple setup for BLE and iwpan 802.15.4 nodes connected to a gateway via 6lowpan (in a star pattern). No mesh involved.
On the
Hello Devs,
I'd like to discuss some different approaches to a simple setup for BLE and iwpan 802.15.4 nodes connected to a gateway via 6lowpan (in a star pattern). No mesh involved.
On the
|
By
Michael Scott
·
#4955
·
|
|
Re: Flash configuration in dts file
In some work that I’m doing I had to do the same thing. I haven’t posted a PR for this work so I’m not sure how the community will react but here is what I did to add the file system partition
In some work that I’m doing I had to do the same thing. I haven’t posted a PR for this work so I’m not sure how the community will react but here is what I did to add the file system partition
|
By
David Leach
·
#4954
·
|
|
Re: Flash configuration in dts file
The solution below is not available since I need to start the fimrware at 0x0 without bootloader.
So I would really appreciate if someone could help me.
I compile with a nrf52_pca10040
The solution below is not available since I need to start the fimrware at 0x0 without bootloader.
So I would really appreciate if someone could help me.
I compile with a nrf52_pca10040
|
By
Laurence Pasteau
·
#4953
·
|
|
Flash configuration in dts file
Hi everybody,
I have a question regarding dts file, and more specifically the flash partition.
I would like to have a project without bootloader, but with a partition for the code and another for the
Hi everybody,
I have a question regarding dts file, and more specifically the flash partition.
I would like to have a project without bootloader, but with a partition for the code and another for the
|
By
Laurence Pasteau
·
#4952
·
|
|
Cpp support on Zephyr
#gettingstartedguide
Hi,
Does anyone tried to compile a project written in C++ or knows how powerful is Zephyr in supporting C++ applications?
Regards,
Mina
Hi,
Does anyone tried to compile a project written in C++ or knows how powerful is Zephyr in supporting C++ applications?
Regards,
Mina
|
By
miem@...
·
#4951
·
|
|
Re: about synchronization of remote forked master, local master & local branches
Hi Li,
I tried your trick. But it was not fulfill my requirements.
Following is my way ....... It is lengthy but works !!
(PART-A)
// This is to sync forked local master (repo on PC/Laptop) with
Hi Li,
I tried your trick. But it was not fulfill my requirements.
Following is my way ....... It is lengthy but works !!
(PART-A)
// This is to sync forked local master (repo on PC/Laptop) with
|
By
vikrant8051 <vikrant8051@...>
·
#4950
·
|
|
Re: about synchronization of remote forked master, local master & local branches
Hi,
# I don't think it's a good idea to multi-post.
# make sure not to do so next time.
$ git fetch --all
$ git pull $YOUR_REMOTE origin/master:master
$ git fetch --all
$ git checkout master
$ git
Hi,
# I don't think it's a good idea to multi-post.
# make sure not to do so next time.
$ git fetch --all
$ git pull $YOUR_REMOTE origin/master:master
$ git fetch --all
$ git checkout master
$ git
|
By
Yasushi SHOJI
·
#4949
·
|
|
Re: about synchronization of remote forked master, local master & local branches
Let’s say the PR’s number is $PR, run the follow commands:
git pull origin master
git fetch origin +refs/pull/$PR/merge
git checkout FETCH_HEAD -b my_branch_with_fix
From: <devel@...>
Let’s say the PR’s number is $PR, run the follow commands:
git pull origin master
git fetch origin +refs/pull/$PR/merge
git checkout FETCH_HEAD -b my_branch_with_fix
From: <devel@...>
|
By
Li, Jun R
·
#4948
·
|
|
about synchronization of remote forked master, local master & local branches
Hi,
Assume a person create one PR (to solve already present issues) & it take some time to get approval from reviewers.
Meanwhile Zephyr master get upgrad as usual.
Then how to properly sync
1)
Hi,
Assume a person create one PR (to solve already present issues) & it take some time to get approval from reviewers.
Meanwhile Zephyr master get upgrad as usual.
Then how to properly sync
1)
|
By
vikrant8051 <vikrant8051@...>
·
#4947
·
|
|
Re: Renaming the RISC-V FE310 SoC in Zephyr
I do not think the FRDM in Freedom board is something Zephyr specific, this is part of the branding/product naming AFAIK. So I would not abbreviate it, SiFive Freedom is just fine.
Anas
I do not think the FRDM in Freedom board is something Zephyr specific, this is part of the branding/product naming AFAIK. So I would not abbreviate it, SiFive Freedom is just fine.
Anas
|
By
Nashif, Anas
·
#4946
·
|
|
Re: Renaming the RISC-V FE310 SoC in Zephyr
Hi Nate,
No objections, I only want to point out that we already abbreviate "Freedom" as "frdm" in the NXP Freedom board series, for
Hi Nate,
No objections, I only want to point out that we already abbreviate "Freedom" as "frdm" in the NXP Freedom board series, for
|
By
Carles Cufi
·
#4945
·
|
|
Renaming the RISC-V FE310 SoC in Zephyr
Hi Zephyr Developers,
At the moment, Zephyr support for SiFive’s Freedom line of SoCs is named FE310. Since the FE310 is just one of our products which is compatible with this port, we’d like to
Hi Zephyr Developers,
At the moment, Zephyr support for SiFive’s Freedom line of SoCs is named FE310. Since the FE310 is just one of our products which is compatible with this port, we’d like to
|
By
Nathaniel Graff
·
#4944
·
|
|
Re: Can't perform "cmake -GNinja -DBOARD=bbc_microbit .."
Hi Kai,
Thanks for confirming this solves the issue.
Note that the installation path does *not* need to be called “gnuarmemb” since Zephyr simply uses the location set in
Hi Kai,
Thanks for confirming this solves the issue.
Note that the installation path does *not* need to be called “gnuarmemb” since Zephyr simply uses the location set in
|
By
Carles Cufi
·
#4943
·
|