|
Re: Error when getting started with zephyr on Windows Subsystem for Linux
Hi Nash,
Is this a new installation of WSL Ubuntu, or one that’s been used for other purposes for a while? I ask because I believe the errors you’re seeing are due to those packages already
Hi Nash,
Is this a new installation of WSL Ubuntu, or one that’s been used for other purposes for a while? I ask because I believe the errors you’re seeing are due to those packages already
|
By
Jason Bens <jason.bens@...>
·
#2982
·
|
|
Error when getting started with zephyr on Windows Subsystem for Linux
Hello,
I am trying to install zephyr on WSL Ubuntu (20.04.4), using this guide: https://docs.zephyrproject.org/latest/develop/getting_started/index.html
I am able to get up to the command:
pip3
Hello,
I am trying to install zephyr on WSL Ubuntu (20.04.4), using this guide: https://docs.zephyrproject.org/latest/develop/getting_started/index.html
I am able to get up to the command:
pip3
|
By
Nash S. <nashsth@...>
·
#2981
·
|
|
Re: build ROM library
Hi Jacob:
Yes you can use the Zephyr build system to build a library. Just put a CMakeLists.txt file in the subdirectory where you have your library (the atmel crypto library in my case). Here is the
Hi Jacob:
Yes you can use the Zephyr build system to build a library. Just put a CMakeLists.txt file in the subdirectory where you have your library (the atmel crypto library in my case). Here is the
|
By
Lawrence King
·
#2980
·
|
|
Re: multiple board support
Just for future reference. The previous code can be rewritten as:
if (CONFIG_BOARD_QEMU_X86)
set(EXTRA_CFLAGS <flags for this board>)
elseif (CONFIG_BOARD_DISCO_L475_IOT1)
Just for future reference. The previous code can be rewritten as:
if (CONFIG_BOARD_QEMU_X86)
set(EXTRA_CFLAGS <flags for this board>)
elseif (CONFIG_BOARD_DISCO_L475_IOT1)
|
By
CHRISTIAN TOMAS TENLLADO VAN DER REIJDEN
·
#2979
·
|
|
Re: Zephyr not working on MacOs
Hi Kumar,
Yes I installed all the packages that were mentioned in the site. I was able to get rid of the error also.
But then when I try to run the west flash after running west build command, I get
Hi Kumar,
Yes I installed all the packages that were mentioned in the site. I was able to get rid of the error also.
But then when I try to run the west flash after running west build command, I get
|
By
Nitin Ajay <nitin@...>
·
#2978
·
|
|
Re: multiple board support
Thank you very much Jason, it was indeed very helpful. Just for
reference, the piece of "code" in the CMakeLists.txt file can be:
if (${CONFIG_BOARD_QEMU_X86})
set(EXTRA_CFLAGS <flags for
Thank you very much Jason, it was indeed very helpful. Just for
reference, the piece of "code" in the CMakeLists.txt file can be:
if (${CONFIG_BOARD_QEMU_X86})
set(EXTRA_CFLAGS <flags for
|
By
CHRISTIAN TOMAS TENLLADO VAN DER REIJDEN
·
#2977
·
|
|
Re: multiple board support
Hi Christian,
You may be able to simplify your conditional statement by instead testing for the presence of CONFIG_BOARD_QEMU_X86 or CONFIG_BOARD_DISCO_L475_IOT1. These should be set somewhere in a
Hi Christian,
You may be able to simplify your conditional statement by instead testing for the presence of CONFIG_BOARD_QEMU_X86 or CONFIG_BOARD_DISCO_L475_IOT1. These should be set somewhere in a
|
By
Jason Bens <jason.bens@...>
·
#2976
·
|
|
multiple board support
Hello:
I am having some troubles compiling my project. I want to support
several boards and therefore I have a boards directory with a .conf
file for each board in which I can punt the CONFIG*
Hello:
I am having some troubles compiling my project. I want to support
several boards and therefore I have a boards directory with a .conf
file for each board in which I can punt the CONFIG*
|
By
CHRISTIAN TOMAS TENLLADO VAN DER REIJDEN
·
#2975
·
|
|
Re: Zephyr not working on MacOs
Did you install the python packages?
pip3 install -r ~/zephyrproject/zephyr/scripts/requirements.txt
(Step 4
Did you install the python packages?
pip3 install -r ~/zephyrproject/zephyr/scripts/requirements.txt
(Step 4
|
By
Kumar Gala <galak.kernel@...>
·
#2974
·
|
|
Zephyr not working on MacOs
Hi I installed zephyr on Mac with M1 silicon. I am trying to run zephyr with the ESP32 development kit. When I try running the command
west build
It gives the following
Hi I installed zephyr on Mac with M1 silicon. I am trying to run zephyr with the ESP32 development kit. When I try running the command
west build
It gives the following
|
By
Nitin Ajay <nitin@...>
·
#2973
·
|
|
Re: Doubts about C++ new/delete support
#CPP
Thank you so much to both of you, that solved my doubts.
Thank you so much to both of you, that solved my doubts.
|
By
lucatorresetti@...
·
#2972
·
|
|
Re: Doubts about C++ new/delete support
#CPP
Hi,
We have recently added https://docs.zephyrproject.org/latest/develop/languages/cpp/index.html
C++ standard library support requires a fully featured C library bundled in the toolchain, which is
Hi,
We have recently added https://docs.zephyrproject.org/latest/develop/languages/cpp/index.html
C++ standard library support requires a fully featured C library bundled in the toolchain, which is
|
By
Stephanos Ioannidis
·
#2971
·
|
|
Re: Doubts about C++ new/delete support
#CPP
Hi there,
I think exceptions need some extra work to be thread-safe, but Stephanos should know more.
Regarding the lack of documentation, we do
Hi there,
I think exceptions need some extra work to be thread-safe, but Stephanos should know more.
Regarding the lack of documentation, we do
|
By
Carles Cufi
·
#2970
·
|
|
Doubts about C++ new/delete support
#CPP
Since there isn't any documentation about how to properly set-up a c++ application i'll ask here some questions about the topic. In issue #18990 it was pointed out the use of the kernel heap pool for
Since there isn't any documentation about how to properly set-up a c++ application i'll ask here some questions about the topic. In issue #18990 it was pointed out the use of the kernel heap pool for
|
By
lucatorresetti@...
·
#2969
·
|
|
USB speed issue
#usb
When I run the zephyr/samples/subsys/usb/mass example for board mimxrt1050_evk everything works fine except is only runs at normal USB Full speed 12M. I have tried to add
When I run the zephyr/samples/subsys/usb/mass example for board mimxrt1050_evk everything works fine except is only runs at normal USB Full speed 12M. I have tried to add
|
By
henrik.dox@...
·
#2968
·
|
|
Linking Prebuilt Binaries
Hello,
I am looking for a method to link prebuilt binaries so that they are included in my zephyr application binary file. These are not code libraries, they are actually just images of logos that
Hello,
I am looking for a method to link prebuilt binaries so that they are included in my zephyr application binary file. These are not code libraries, they are actually just images of logos that
|
By
Casey Shea
·
#2967
·
|
|
Re: DFU based on mcumgr and mcuboot not working
#mcuboot
#stm32
Hi again,
I am still struggling with DFU/MCUboot...
Is there anyone out there that has successfully used MCUboot together with the STM32H7 line of MCU's?
I have updated my build environment to
Hi again,
I am still struggling with DFU/MCUboot...
Is there anyone out there that has successfully used MCUboot together with the STM32H7 line of MCU's?
I have updated my build environment to
|
By
Anders
·
#2966
·
|
|
Regarding implementation of cache attack codes on Comet Risc V Processor working on Zephyr OS
Dear Sir/ Madam,
I am a PhD student from Indian Institute of Technology Goa. I am trying to implement a Cache Side Channel attack on Comet Risc V 32 bit processor. I have added the board architecture
Dear Sir/ Madam,
I am a PhD student from Indian Institute of Technology Goa. I am trying to implement a Cache Side Channel attack on Comet Risc V 32 bit processor. I have added the board architecture
|
By
Pavitra bhade <pavitra19231101@...>
·
#2965
·
|
|
DFU based on mcumgr and mcuboot not working
#mcuboot
#stm32
Hi,
For DFU using mcumgr over UDP we have a working configuration based on a version of the manifest-rev branch of mcuboot modified to support 32 byte alignment.
Environment is Zephyr 3.0.0 running
Hi,
For DFU using mcumgr over UDP we have a working configuration based on a version of the manifest-rev branch of mcuboot modified to support 32 byte alignment.
Environment is Zephyr 3.0.0 running
|
By
Anders
·
#2964
·
|
|
build ROM library
Hi,
I'm planning to build a couple of libraries that will reside in ROM, and call them from a Zephyr application.
The nature of these libraries is that I don't have control of their source code and
Hi,
I'm planning to build a couple of libraries that will reside in ROM, and call them from a Zephyr application.
The nature of these libraries is that I don't have control of their source code and
|
By
Jacob Avraham
·
#2963
·
|