|
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
·
|
|
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) set(EXTRA_CFLAGS <flags for
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) set(EXTRA_CFLAGS <flags for
|
By
CHRISTIAN TOMAS TENLLADO VAN DER REIJDEN
· #2979
·
|
|
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 t
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 t
|
By
...
· #2978
·
|
|
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 this board>)
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 this board>)
|
By
CHRISTIAN TOMAS TENLLADO VAN DER REIJDEN
· #2977
·
|
|
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
· #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* entries
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* entries
|
By
CHRISTIAN TOMAS TENLLADO VAN DER REIJDEN
· #2975
·
|
|
Zephyr not working on MacOs
Did you install the python packages? pip3 install -r ~/zephyrproject/zephyr/scripts/requirements.txt (Step 4 here) https://docs.zephyrproject.org/latest/develop/getting_started/index.html#get-zephyr-a
Did you install the python packages? pip3 install -r ~/zephyrproject/zephyr/scripts/requirements.txt (Step 4 here) https://docs.zephyrproject.org/latest/develop/getting_started/index.html#get-zephyr-a
|
By
...
· #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 error: [1/159] Generating inclu
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 error: [1/159] Generating inclu
|
By
...
· #2973
·
|
|
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
@torres98
· #2972
·
|
|
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 th
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 th
|
By
Stephanos Ioannidis
· #2971
·
|
|
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 have: https://docs.zephyrproject.org/latest/develop/lang
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 have: https://docs.zephyrproject.org/latest/develop/lang
|
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
@torres98
· #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 "CONFIG_USB_DC_HAS_HS_SUPPORT
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 "CONFIG_USB_DC_HAS_HS_SUPPORT
|
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 get
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 get
|
By
Casey Shea
· #2967
·
|
|
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 Zephyr
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 Zephyr
|
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
...
· #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 on
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 on
|
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 th
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 th
|
By
Jacob Avraham
· #2963
·
|
|
Is there a Visual Studio Solution available for Zephyr?
Hi, I would like to develop and debug using Visual Studio (not Visual Code) under Windows 10. In other words, I would like to develop and debug with Visual Studio on the PC without the need of a board
Hi, I would like to develop and debug using Visual Studio (not Visual Code) under Windows 10. In other words, I would like to develop and debug with Visual Studio on the PC without the need of a board
|
By
...
· #2962
·
|
|
GSM modem AT commands
Thanks for your reply, Billy. (I didn’t see it until now because I didn’t receive your response in my email; I had to check https://lists.zephyrproject.org/g/users/. Odd, because I have received email
Thanks for your reply, Billy. (I didn’t see it until now because I didn’t receive your response in my email; I had to check https://lists.zephyrproject.org/g/users/. Odd, because I have received email
|
By
...
· #2961
·
|