|
Hawkbit sample functionality
#networking
#mcuboot
#mcumgr
Hi, I am trying to learn how to perform an OTA update for my nrf5340dk. I was initially planning to use the "big_http_download" sample to download the update file, and then flash that image into slot1
Hi, I am trying to learn how to perform an OTA update for my nrf5340dk. I was initially planning to use the "big_http_download" sample to download the update file, and then flash that image into slot1
|
By
Brenton Chetty
·
#2782
·
|
|
Re: Zephyr escaping its virtual environment
Hey Marti, thanks for the advice.
In this case specifically, I tracked it down to a pretty silly mistake. I was using the nRF extension for VS Code, but also had the CMake extension installed. I
Hey Marti, thanks for the advice.
In this case specifically, I tracked it down to a pretty silly mistake. I was using the nRF extension for VS Code, but also had the CMake extension installed. I
|
By
Jason Bens <jason.bens@...>
·
#2781
·
|
|
Re: Zephyr for ARM A53
Zephyr has support for multiple ARMv8 based SoCs/boards. Take a look
Zephyr has support for multiple ARMv8 based SoCs/boards. Take a look
|
By
Manivannan Sadhasivam <mani@...>
·
#2780
·
|
|
#customboard Linker Error with Custom Board
#customboard
I copied the board files from mimxrt1050_evk, and renamed them to my own board, basically just changing the names. When I do I get the following linker
I copied the board files from mimxrt1050_evk, and renamed them to my own board, basically just changing the names. When I do I get the following linker
|
By
mbarrett@...
·
#2779
·
|
|
Re: Zephyr escaping its virtual environment
Hi,
It's hard to diagnose issues like this remotely, and especially with so
few details.
If you are looking for general advice:
- check your PATH for where west is installed
- check things like 'py
Hi,
It's hard to diagnose issues like this remotely, and especially with so
few details.
If you are looking for general advice:
- check your PATH for where west is installed
- check things like 'py
|
By
Bolivar, Marti
·
#2778
·
|
|
Zephyr for ARM A53
Hello all,
This is Sandeep from Maxlinear Technologies.
We are building a solution using ARM A53 – Wherein we plan to run RTOS on a couple of cores for time critical functions and we also
Hello all,
This is Sandeep from Maxlinear Technologies.
We are building a solution using ARM A53 – Wherein we plan to run RTOS on a couple of cores for time critical functions and we also
|
By
Sandeep Kulkarni <skulkarni@...>
·
#2777
·
|
|
Re: Zephyr escaping its virtual environment
Hey Marti,
As far as I can tell, I don't have west currently installed outside of the virtual environment. This project I'm trying to get going predates a tonne of build environment issues I've been
Hey Marti,
As far as I can tell, I don't have west currently installed outside of the virtual environment. This project I'm trying to get going predates a tonne of build environment issues I've been
|
By
Jason Bens <jason.bens@...>
·
#2776
·
|
|
Re: Zephyr escaping its virtual environment
Hi, I use zephyr exclusively within virtual environments.
Did you install west outside of the venv? If you build with west, Zephyr
tries to use the same python from the build system that you used
Hi, I use zephyr exclusively within virtual environments.
Did you install west outside of the venv? If you build with west, Zephyr
tries to use the same python from the build system that you used
|
By
Bolivar, Marti
·
#2775
·
|
|
Zephyr escaping its virtual environment
Hi.
I’m trying to build zephyr inside a python virtual environment. It looks like it’s somehow pulling in the base python interpreter, rather than the fake one provided in the virtual
Hi.
I’m trying to build zephyr inside a python virtual environment. It looks like it’s somehow pulling in the base python interpreter, rather than the fake one provided in the virtual
|
By
Jason Bens <jason.bens@...>
·
#2774
·
|
|
Re: Easy way to setup Zephyr in VSCode?
There are options! I'd recommend this discussion as a starting point. There are 3 solutions I know of:
Nordic has their nRF Connect extension that works very well with Nordic-based boards, and can
There are options! I'd recommend this discussion as a starting point. There are 3 solutions I know of:
Nordic has their nRF Connect extension that works very well with Nordic-based boards, and can
|
By
Jonathan Beri
·
#2772
·
|
|
Easy way to setup Zephyr in VSCode?
Hi, I am trying to find a way to build my projects in VSCode. So far I have been manually building in my terminal using west.
Is there an easy way to change that and start building out of VSCode
Hi, I am trying to find a way to build my projects in VSCode. So far I have been manually building in my terminal using west.
Is there an easy way to change that and start building out of VSCode
|
By
markus.prager@...
·
#2771
·
|
|
Re: big_http_download sample localhost download
Hi Brenton,
I don’t have exact answers for the issue you report, but some observations from my side, while I tried to find the root cause for the problem. The core reason http client disconnects
Hi Brenton,
I don’t have exact answers for the issue you report, but some observations from my side, while I tried to find the root cause for the problem. The core reason http client disconnects
|
By
Lubos, Robert
·
#2770
·
|
|
Re: Setting MAC address at boot?
#stm32
Hi again Jukka,
Thank you! Setting of MAC works fine now.
The CONFIG_NET_L2_ETHERNET_MGMT parameter did the trick!
/Anders
Hi again Jukka,
Thank you! Setting of MAC works fine now.
The CONFIG_NET_L2_ETHERNET_MGMT parameter did the trick!
/Anders
|
By
Anders
·
#2769
·
|
|
Re: Setting MAC address at boot?
#stm32
Try to add also these two settings
CONFIG_NET_MGMT_EVENT=y
CONFIG_NET_L2_ETHERNET_MGMT=y
Jukka
Try to add also these two settings
CONFIG_NET_MGMT_EVENT=y
CONFIG_NET_L2_ETHERNET_MGMT=y
Jukka
|
By
Jukka Rissanen
·
#2768
·
|
|
Re: Setting MAC address at boot?
#stm32
Thanks for helping me figure this out!
I have tried to use the proposed, proper way of doing this using:
net_mgmt(NET_REQUEST_ETHERNET_SET_MAC_ADDRESS, iface,
¶ms, sizeof(struct
Thanks for helping me figure this out!
I have tried to use the proposed, proper way of doing this using:
net_mgmt(NET_REQUEST_ETHERNET_SET_MAC_ADDRESS, iface,
¶ms, sizeof(struct
|
By
Anders
·
#2767
·
|
|
Re: Setting MAC address at boot?
#stm32
Hi Anders,
there is also some info about MAC address setting in
https://github.com/zephyrproject-rtos/zephyr/discussions/39252
Note that if you are setting the MAC address from application,
Hi Anders,
there is also some info about MAC address setting in
https://github.com/zephyrproject-rtos/zephyr/discussions/39252
Note that if you are setting the MAC address from application,
|
By
Jukka Rissanen
·
#2766
·
|
|
Re: big_http_download sample localhost download
I forgot to mention.
After downloading up to 2680 bytes, I receive the following error:
Timeout on reading responsees; 2 KiB; 0 MiB
I forgot to mention.
After downloading up to 2680 bytes, I receive the following error:
Timeout on reading responsees; 2 KiB; 0 MiB
|
By
Brenton Chetty
·
#2765
·
|
|
Re: big_http_download sample localhost download
Hi Robert
Thank you for your assistance. I managed to get qemu to begin downloading a file on localhost.
However, the file downloads up to a maximum of 2680 bytes, then it fails, and restarts the
Hi Robert
Thank you for your assistance. I managed to get qemu to begin downloading a file on localhost.
However, the file downloads up to a maximum of 2680 bytes, then it fails, and restarts the
|
By
Brenton Chetty
·
#2764
·
|
|
ODP: k_sleep causes nRF5340 to reset
Hi Jason,
I would check two things:
if call to k_sleep happens before kernel is ready. You can use k_is_pre_kernel to check that.
if your board has LF XTAL (as nrf5340dk) or it must run from LFRC.
Hi Jason,
I would check two things:
if call to k_sleep happens before kernel is ready. You can use k_is_pre_kernel to check that.
if your board has LF XTAL (as nrf5340dk) or it must run from LFRC.
|
By
Chruściński, Krzysztof
·
#2763
·
|
|
Re: big_http_download sample localhost download
Hi Brenton,
The DNS server configuration shouldn’t be an issue in this case, as we provide the IP address of the server – in such case the DNS query isn’t even sent as we already know the IP
Hi Brenton,
The DNS server configuration shouldn’t be an issue in this case, as we provide the IP address of the server – in such case the DNS query isn’t even sent as we already know the IP
|
By
Lubos, Robert
·
#2762
·
|