|
Re: Enabling Exceptions in C++ Build
#CPP
#CPP_Exceptions
What SDK/toolchain and platform do you use?
BTW> Build with C++ exceptions is a part of Zephyr CI (1 test), so for many platforms (including mine) C++ exceptions work well.
What SDK/toolchain and platform do you use?
BTW> Build with C++ exceptions is a part of Zephyr CI (1 test), so for many platforms (including mine) C++ exceptions work well.
|
By
artur.lipowski@...
·
#2820
·
|
|
out of tree arch build?
#customboard
Hi,
is there a way to support out of tree arch build like SOC or board?
Any advise is appreciated.
Sheng
Hi,
is there a way to support out of tree arch build like SOC or board?
Any advise is appreciated.
Sheng
|
By
canyon_lake@...
·
#2819
·
|
|
Enabling Exceptions in C++ Build
#CPP
#CPP_Exceptions
I am trying to get my code to build with C++ exceptions enabled. Here are my
I am trying to get my code to build with C++ exceptions enabled. Here are my
|
By
apion@...
·
#2818
·
|
|
Re: gsm_modem sample changed in Zephyr 2.7
#ppp
Thank you guys for your help.
I can't believe, I didn't think of removing that line. I think I need to take my work leave earlier lol.
And yes, Next time I will include more information about
Thank you guys for your help.
I can't believe, I didn't think of removing that line. I think I need to take my work leave earlier lol.
And yes, Next time I will include more information about
|
By
Brenton Chetty
·
#2817
·
|
|
Re: Clocks reset to start-up config after exiting STOP mode
#stm32
#pm
Hello,
I would like to follow this up by letting you know this issue has been fixed.
This issue has been solved by calling LL_LPM_EnableSleep() function in the STOP mode exit routine. This
Hello,
I would like to follow this up by letting you know this issue has been fixed.
This issue has been solved by calling LL_LPM_EnableSleep() function in the STOP mode exit routine. This
|
By
Marijn Stam <marijnstam@...>
·
#2816
·
|
|
Re: gsm_modem sample changed in Zephyr 2.7
#ppp
Looked at the file structure to check: "fatal error: drivers/gsm_ppp.h: No such file or directory". Not so surprisingly the header file is not in the drivers folder it is in the drivers/modem folder,
Looked at the file structure to check: "fatal error: drivers/gsm_ppp.h: No such file or directory". Not so surprisingly the header file is not in the drivers folder it is in the drivers/modem folder,
|
By
William Fish
·
#2815
·
|
|
Re: gsm_modem sample changed in Zephyr 2.7
#ppp
Hi Brenton,
this should be fixed by https://github.com/zephyrproject-rtos/zephyr/pull/40996
Cheers,
Jukka
Hi Brenton,
this should be fixed by https://github.com/zephyrproject-rtos/zephyr/pull/40996
Cheers,
Jukka
|
By
Jukka Rissanen
·
#2814
·
|
|
Re: gsm_modem sample changed in Zephyr 2.7
#ppp
Hi. I did try removing my build folder and using the pristine build, both did not help unfortunately. I am also using a clean install of Ubuntu and Zephyr, so the sample should have worked out of the
Hi. I did try removing my build folder and using the pristine build, both did not help unfortunately. I am also using a clean install of Ubuntu and Zephyr, so the sample should have worked out of the
|
By
Brenton Chetty
·
#2813
·
|
|
Re: gsm_modem sample changed in Zephyr 2.7
#ppp
You may just need to just do a "pristine" build or delete the build folder as the file was moved a while ago to conform with coding standards.
Billy..
You may just need to just do a "pristine" build or delete the build folder as the file was moved a while ago to conform with coding standards.
Billy..
|
By
William Fish
·
#2812
·
|
|
C++ support with debug optimiations
#debugging
Hi All,
We're trying to turn on debug optimizations, with C++ support. We have the following settings in our prj.conf:
CONFIG_DEBUG_OPTIMIZATIONS=y
CONFIG_NO_OPTIMIZATIONS=y
but this leads to an
Hi All,
We're trying to turn on debug optimizations, with C++ support. We have the following settings in our prj.conf:
CONFIG_DEBUG_OPTIMIZATIONS=y
CONFIG_NO_OPTIMIZATIONS=y
but this leads to an
|
By
mbarrett@...
·
#2811
·
|
|
Clocks reset to start-up config after exiting STOP mode
#stm32
#pm
Hello,
I'm using the Zephyr RTOS on a STM32F091 and have recently started working on implementing some low-power states (sleep and STOP). The system is fed by the PLL (48MHz) which is in turn fed
Hello,
I'm using the Zephyr RTOS on a STM32F091 and have recently started working on implementing some low-power states (sleep and STOP). The system is fed by the PLL (48MHz) which is in turn fed
|
By
Marijn Stam <marijnstam@...>
·
#2810
·
|
|
gsm_modem sample changed in Zephyr 2.7
#ppp
Hi there,
I was using the Zephyr 2.6 branch, and I got the gsm_sample to work for my application. I was using the nrf5340dk_nrf5340_cpuapp with a U-blox R211 gsm modem.
However, when I updated to
Hi there,
I was using the Zephyr 2.6 branch, and I got the gsm_sample to work for my application. I was using the nrf5340dk_nrf5340_cpuapp with a U-blox R211 gsm modem.
However, when I updated to
|
By
Brenton Chetty
·
#2809
·
|
|
Flash write support for hyperflash on mimxrt1050_evk
#flash
#driver
I'm in the process of adding device firmware upgrade support for the mimxrt1050_evk using the hyperflash.
To use the flash_img api I had to make the following change:
---
I'm in the process of adding device firmware upgrade support for the mimxrt1050_evk using the hyperflash.
To use the flash_img api I had to make the following change:
---
|
By
mbarrett@...
·
#2808
·
|
|
Re: How to add support for STM32H7B0 SoC to Zephyr
#stm32
Hi Laura,
yes, That's the way to proceed : like the link you mention
adding the new device in the ./dts/arm/st/h7
config the ./soc/arm/st_stm32/stm32h7/Kconfig.defconfig.stm32h7b0xx
create the board
Hi Laura,
yes, That's the way to proceed : like the link you mention
adding the new device in the ./dts/arm/st/h7
config the ./soc/arm/st_stm32/stm32h7/Kconfig.defconfig.stm32h7b0xx
create the board
|
By
Francois RAMU
·
#2807
·
|
|
How to add support for STM32H7B0 SoC to Zephyr
#stm32
This is my first time trying to add support for a board and using Zephyr RTOS, so any help would be appreciated:
I believe Zephyr RTOS already has support for my architecture (ARM), CPU core (Arm
This is my first time trying to add support for a board and using Zephyr RTOS, so any help would be appreciated:
I believe Zephyr RTOS already has support for my architecture (ARM), CPU core (Arm
|
By
Laura
·
#2806
·
|
|
Re: CoAP client observer
Hi Robert, thanks for your interest in the topic!
I will take a look at the pull!
Best
Alessio Galliazzo
https://www.agalliazzo.com/
Debugging is twice as hard as writing the code in the first
Hi Robert, thanks for your interest in the topic!
I will take a look at the pull!
Best
Alessio Galliazzo
https://www.agalliazzo.com/
Debugging is twice as hard as writing the code in the first
|
By
Alessio
·
#2805
·
|
|
Asking for NVS detail documentation
Hello Zephyr team
I am a software engineer of ITR VN company in Viet Nam country. Our develop team is well using Zephyr OS in our current project, but there are some unclear things related to NVS
Hello Zephyr team
I am a software engineer of ITR VN company in Viet Nam country. Our develop team is well using Zephyr OS in our current project, but there are some unclear things related to NVS
|
By
Nhi Ngo Nhat <nhingonhat@...>
·
#2804
·
|
|
Espressif ESP32 development setup script and tutorial.
#risc-v
#esp32
A Zephyr RTOS & Espressif ESP32 SOC Development Environment: Linux setup script and tutorial.
git clone https://github.com/Burtrum/scripts-zephyr
This single script installs ALL of the tools needed to
A Zephyr RTOS & Espressif ESP32 SOC Development Environment: Linux setup script and tutorial.
git clone https://github.com/Burtrum/scripts-zephyr
This single script installs ALL of the tools needed to
|
By
Robert C
·
#2803
·
|
|
Re: CoAP client observer
Hi Alessio,
Unfortunately I’m not aware of any other good resource for the client side of the Zephyr Observer API other than `coap_client` sample. When checking the sample though I’ve noticed
Hi Alessio,
Unfortunately I’m not aware of any other good resource for the client side of the Zephyr Observer API other than `coap_client` sample. When checking the sample though I’ve noticed
|
By
Lubos, Robert
·
#2802
·
|
|
Re: use esp32 can't build project
Hi zhichun lee,
I often find that 'pip3' works in mysterious ways (it is not always clear which python installation it is linked with).
Have you tried `/usr/bin/python3.6 -m pip install kconfiglib`
Hi zhichun lee,
I often find that 'pip3' works in mysterious ways (it is not always clear which python installation it is linked with).
Have you tried `/usr/bin/python3.6 -m pip install kconfiglib`
|
By
mlsvrts
·
#2801
·
|