|
Re: Setting MAC address at boot?
#stm32
Update! Problem solved. The function net_if_set_link_addr() sets the MAC address.
Why isn't the function named net_if_set_mac_addr()?
Update! Problem solved. The function net_if_set_link_addr() sets the MAC address.
Why isn't the function named net_if_set_mac_addr()?
|
By
Anders
·
#2754
·
|
|
Re: MCUboot - Signing image for slot 1
#mcuboot
Hi Brenton,
The only images you should flash are MCUboot and an image that goes to Slot#0. Any further operations should be conducted with the mcumgr tool. At least I used to do that. This tool gives
Hi Brenton,
The only images you should flash are MCUboot and an image that goes to Slot#0. Any further operations should be conducted with the mcumgr tool. At least I used to do that. This tool gives
|
By
Adam Podogrocki
·
#2753
·
|
|
Re: MCUboot - Signing image for slot 1
#mcuboot
Hi Adam
Thank you for your reply. Sorry for the late response, as I have been getting sporadic results, i.e. sometimes the image upgrade works and most of the time it doesn't.
I have been using the
Hi Adam
Thank you for your reply. Sorry for the late response, as I have been getting sporadic results, i.e. sometimes the image upgrade works and most of the time it doesn't.
I have been using the
|
By
Brenton Chetty
·
#2752
·
|
|
Re: MCUboot - Signing image for slot 1
#mcuboot
Hi Brenton,
please try similar command:
imgtool.py sign --key root-rsa-2048.pem --header-size 0x200 --align 8 --version <YOUR_VERSION> --slot-size <YOUR_SLOT_SIZE_IN_HEX> ZEPHYR_BIN_FILE
Hi Brenton,
please try similar command:
imgtool.py sign --key root-rsa-2048.pem --header-size 0x200 --align 8 --version <YOUR_VERSION> --slot-size <YOUR_SLOT_SIZE_IN_HEX> ZEPHYR_BIN_FILE
|
By
Adam Podogrocki
·
#2751
·
|
|
Re: MCUboot - Signing image for slot 1
#mcuboot
Hi,
why do you want to compile it with offset of slot1? Normaly you compile image for slot0, upload it to slot1 and MCUboot will swap them after reboot.
Martin
Hi,
why do you want to compile it with offset of slot1? Normaly you compile image for slot0, upload it to slot1 and MCUboot will swap them after reboot.
Martin
|
By
Martin Kozusky
·
#2750
·
|
|
Setting MAC address at boot?
#stm32
Hi,
I'm new to Zephyr and is struggling with how to configure the MAC address for the ethernet interface on an STM32F767 based platform at boot.
I have searched the internet and the Zephyr
Hi,
I'm new to Zephyr and is struggling with how to configure the MAC address for the ethernet interface on an STM32F767 based platform at boot.
I have searched the internet and the Zephyr
|
By
Anders
·
#2749
·
|
|
MCUboot - Signing image for slot 1
#mcuboot
1. Hi, how do I go about signing an image for slot1 usage.
I used the following command for flashing into slot0 successfully:
west sign -t imgtool -- --key
1. Hi, how do I go about signing an image for slot1 usage.
I used the following command for flashing into slot0 successfully:
west sign -t imgtool -- --key
|
By
Brenton Chetty
·
#2748
·
|
|
Re: MCUboot "Image in the primary slot is not valid"
#mcuboot
Hi,
may be you forgot to sign the image?
west sign -t imgtool -- --key path_to_mcuboot\root-rsa-2048.pem (or other key that mcuboot is using)
west flash
Hi,
may be you forgot to sign the image?
west sign -t imgtool -- --key path_to_mcuboot\root-rsa-2048.pem (or other key that mcuboot is using)
west flash
|
By
Martin Kozusky
·
#2747
·
|
|
Re: PlatformIO for flashing zephyr code on ESP 32
Thank you so much.
By
Komal Rajput-Hajare <komal.hajare5@...>
·
#2746
·
|
|
MCUboot "Image in the primary slot is not valid"
#mcuboot
Hi there
I am having issues getting started with MCUboot. I flashed MCUboot version 1.8-dev onto my "nrf52840dk_nrf52840" and "nrf5340dk_nrf5340_cpuapp". I then flashed the hello_world sample to my
Hi there
I am having issues getting started with MCUboot. I flashed MCUboot version 1.8-dev onto my "nrf52840dk_nrf52840" and "nrf5340dk_nrf5340_cpuapp". I then flashed the hello_world sample to my
|
By
Brenton Chetty
·
#2745
·
|
|
Re: PlatformIO for flashing zephyr code on ESP 32
Hi Komal:
Although I haven't used PlatformIO with Zephyr myself I know there is a documentation section about it:
https://docs.zephyrproject.org/latest/guides/platformio/index.html
HTH,
Hi Komal:
Although I haven't used PlatformIO with Zephyr myself I know there is a documentation section about it:
https://docs.zephyrproject.org/latest/guides/platformio/index.html
HTH,
|
By
Raúl Sánchez Siles
·
#2744
·
|
|
Re: PlatformIO for flashing zephyr code on ESP 32
Hello
I don't have idea about this error because I haven't try west tool on Ubuntu. Sorry for this.
I am trying to flash the code( hello world) on esp32 using PlatformIO IDE on windows.
Hello
I don't have idea about this error because I haven't try west tool on Ubuntu. Sorry for this.
I am trying to flash the code( hello world) on esp32 using PlatformIO IDE on windows.
|
By
Komal Rajput-Hajare <komal.hajare5@...>
·
#2743
·
|
|
PlatformIO for flashing zephyr code on ESP 32
Hello Zephyr foundation
Currently I am working on ESP32 and zephyr RTOS. But using PlatformIO IDE. My client want zephyr RTOS on ESP32 but only via platform IO. I got sucess using west tool. But
Hello Zephyr foundation
Currently I am working on ESP32 and zephyr RTOS. But using PlatformIO IDE. My client want zephyr RTOS on ESP32 but only via platform IO. I got sucess using west tool. But
|
By
Komal Rajput-Hajare <komal.hajare5@...>
·
#2742
·
|
|
Share variables between threads
Hi all,
is it possible to have some sort of global variables in Zephyr which can be shared between several threads? If yes, how can I create and access them?
Thanks for your help.
Cheers, Mike
Hi all,
is it possible to have some sort of global variables in Zephyr which can be shared between several threads? If yes, how can I create and access them?
Thanks for your help.
Cheers, Mike
|
By
Michael Federer
·
#2741
·
|
|
Re: Two websocket connections at the same time
Hi Robert,
thanks a lot for your answer! Increasing CONFIG_WEBSOCKET_MAX_CONTEXTS to 2 solved it:)
Cheers, Mike
Hi Robert,
thanks a lot for your answer! Increasing CONFIG_WEBSOCKET_MAX_CONTEXTS to 2 solved it:)
Cheers, Mike
|
By
Michael Federer
·
#2740
·
|
|
Re: Two websocket connections at the same time
Hi Mike,
You need to increase “CONFIG_WEBSOCKET_MAX_CONTEXTS” in order to create more websocket connections, this config defaults to 1. I’m not sure if you open any other sockets in your
Hi Mike,
You need to increase “CONFIG_WEBSOCKET_MAX_CONTEXTS” in order to create more websocket connections, this config defaults to 1. I’m not sure if you open any other sockets in your
|
By
Lubos, Robert
·
#2739
·
|
|
Two websocket connections at the same time
Hi all,
I try to open two websocket connections and keep them connected to a FastAPI server at the same time. Establishing the first websocket connection seems to work. But establishing the second
Hi all,
I try to open two websocket connections and keep them connected to a FastAPI server at the same time. Establishing the first websocket connection seems to work. But establishing the second
|
By
Michael Federer
·
#2738
·
|
|
Zephyr and MCUXpresso question
#flash
Hello,
The main idea of my project is to update the software OTA using MCUBoot, DFU and Mender. I followed this
Hello,
The main idea of my project is to update the software OTA using MCUBoot, DFU and Mender. I followed this
|
By
Ridvan Karaman
·
#2737
·
Edited
|
|
[PATCH] Fix the problem that it cannot work under mimxrt1061cvl5a SOC
There is no built-in SDRAM area in mimxrt1061 cvl5a, which makes zephyr unable to work on 1061 SOC
Best Regards
Zhihao
There is no built-in SDRAM area in mimxrt1061 cvl5a, which makes zephyr unable to work on 1061 SOC
Best Regards
Zhihao
|
By
Zhou, ZhihaoX <zhihaox.zhou@...>
·
#2735
·
|
|
Re: [Zephyr-devel] TinyCrypt end of life - Help needed
Hi,
There is no information about tinycrypt being EOL on webpage nor github...
https://github.com/intel/tinycrypt
https://01.org/tinycrypt
--
pozdrawiam
Szymon K. Janc
Hi,
There is no information about tinycrypt being EOL on webpage nor github...
https://github.com/intel/tinycrypt
https://01.org/tinycrypt
--
pozdrawiam
Szymon K. Janc
|
By
Szymon Janc <szymon.janc@...>
·
#2734
·
|