|
Not able to build any project
Hello,
After latest sync with master branch not able to build any project ....
For details this is log for building hello_world app
Hello,
After latest sync with master branch not able to build any project ....
For details this is log for building hello_world app
|
By
vikrant8051 <vikrant8051@...>
·
#5430
·
|
|
Looking for help with SAMD2x
Guys,
I’m looking to see if someone (or group) can help with maintenance of the Atmel SAMD2x SoC family. We have a few things that need updating (like the watchdog driver). And need someone I can
Guys,
I’m looking to see if someone (or group) can help with maintenance of the Atmel SAMD2x SoC family. We have a few things that need updating (like the watchdog driver). And need someone I can
|
By
Kumar Gala
·
#5429
·
|
|
Re: Getting started with ARM GNU Compiler | errors |
#gettingstartedguide
Hi Sebastian,
I tried deleting build folder and created again.
Compilation successful without any issues. Issue not seen anymore
Thanks,
Balasubramanyam Rangineni
--
Thanks & Regards,
Rangineni
Hi Sebastian,
I tried deleting build folder and created again.
Compilation successful without any issues. Issue not seen anymore
Thanks,
Balasubramanyam Rangineni
--
Thanks & Regards,
Rangineni
|
By
Balasubramanyam
·
#5428
·
|
|
Re: Getting started with ARM GNU Compiler | errors |
#gettingstartedguide
I can't think of any reason why blinky would work, whilst hello_world
would produce that error.
Could you try again after deleting the build directories?
It is not necessary to add
I can't think of any reason why blinky would work, whilst hello_world
would produce that error.
Could you try again after deleting the build directories?
It is not necessary to add
|
By
Sebastian Boe
·
#5427
·
|
|
Re: Getting started with ARM GNU Compiler | errors |
#gettingstartedguide
Hi Marti,
I tried compiling zephyr\samples\hello_world\ project.
I used camke command to compile
cmake -GNinja -DBOARD=nrf52832_mdk ..
Failure seen after this command itself. But when I tried
Hi Marti,
I tried compiling zephyr\samples\hello_world\ project.
I used camke command to compile
cmake -GNinja -DBOARD=nrf52832_mdk ..
Failure seen after this command itself. But when I tried
|
By
Balasubramanyam
·
#5426
·
|
|
Re: Getting started with ARM GNU Compiler | errors |
#gettingstartedguide
Hi,
Is this an upstream sample project? What command lines did you use for
cmake and building the project itself?
Thanks,
Marti
Hi,
Is this an upstream sample project? What command lines did you use for
cmake and building the project itself?
Thanks,
Marti
|
By
Marti Bolivar <marti@...>
·
#5425
·
|
|
Re: can zephyr sdk support macos?
<andrei.emeltchenko.news@...> wrote:
The Zephyr SDK covers the toolchain, which is not discussed on that
page at the moment. The main document has information on
<andrei.emeltchenko.news@...> wrote:
The Zephyr SDK covers the toolchain, which is not discussed on that
page at the moment. The main document has information on
|
By
Marti Bolivar <marti@...>
·
#5424
·
|
|
Re: can zephyr sdk support macos?
Hi,
https://docs.zephyrproject.org/latest/getting_started/installation_mac.html
Best regards
Andrei Emeltchenko
Hi,
https://docs.zephyrproject.org/latest/getting_started/installation_mac.html
Best regards
Andrei Emeltchenko
|
By
Andrei
·
#5423
·
|
|
Re: NRF52 Scanning stops without indication
Hi Jon,
Could you please share a simple application or an upstream Zephyr sample that can reproduce this memory leak?
From the look of it, the controller's rx buffers have been leaked. Is there any
Hi Jon,
Could you please share a simple application or an upstream Zephyr sample that can reproduce this memory leak?
From the look of it, the controller's rx buffers have been leaked. Is there any
|
By
Chettimada, Vinayak Kariappa
·
#5422
·
|
|
Getting started with ARM GNU Compiler | errors |
#gettingstartedguide
Hi Team,
I am just getting started with Zephyr and trying to setup development environment. I followed all the steps described to setup ARM GNU GCC toolchain and compilation ENV.
After setting up
Hi Team,
I am just getting started with Zephyr and trying to setup development environment. I followed all the steps described to setup ARM GNU GCC toolchain and compilation ENV.
After setting up
|
By
Balasubramanyam
·
#5421
·
|
|
Re: can zephyr sdk support macos?
The Zephyr SDK is Linux-only.
The Zephyr SDK is Linux-only.
|
By
Marti Bolivar <marti@...>
·
#5420
·
|
|
NRF52 Scanning stops without indication
Hi,
We are running continuous active scan on NRF52 with duplicate filtering disabled. Under some circumstances all scan data stops being generated. This has been difficult to reproduce but is a
Hi,
We are running continuous active scan on NRF52 with duplicate filtering disabled. Under some circumstances all scan data stops being generated. This has been difficult to reproduce but is a
|
By
Jon Pry
·
#5419
·
|
|
Re: Proper way to handle GPIO IRQ enablement
Nice, thanks Tomasz!
It might be a few days before ill be able to test it, but I'll get back to you.
-Lincoln
Nice, thanks Tomasz!
It might be a few days before ill be able to test it, but I'll get back to you.
-Lincoln
|
By
Lincoln Simmons
·
#5418
·
|
|
can zephyr sdk support macos?
can zephyr sdk support macos?
can zephyr sdk support macos?
|
By
cstyle
·
#5417
·
|
|
Re: Proper way to handle GPIO IRQ enablement
Hi Lincoln,
Can you try https://github.com/zephyrproject-rtos/zephyr/pull/11396
(1st commit)
That should solve your issue.
Instead of returning -EALREADY if already installed, I just return
Hi Lincoln,
Can you try https://github.com/zephyrproject-rtos/zephyr/pull/11396
(1st commit)
That should solve your issue.
Instead of returning -EALREADY if already installed, I just return
|
By
Tomasz Bursztyka
·
#5416
·
|
|
Re: Proper way to handle GPIO IRQ enablement
Hi,
Actually you found a bug. It's not up to the user to know that the cb
is already installed (even though, logically it does not make sense to
add the same cb many times), in other words: gpio
Hi,
Actually you found a bug. It's not up to the user to know that the cb
is already installed (even though, logically it does not make sense to
add the same cb many times), in other words: gpio
|
By
Tomasz Bursztyka
·
#5415
·
|
|
Proper way to handle GPIO IRQ enablement
Hi, I'm attempting to use the Zephyr GPIO API for the first time. It seems full featured, but I think this has caused me some confusion. I was debugging my application and found that I got stuck in
Hi, I'm attempting to use the Zephyr GPIO API for the first time. It seems full featured, but I think this has caused me some confusion. I was debugging my application and found that I got stuck in
|
By
Lincoln Simmons
·
#5414
·
|
|
Re: #nrf52480 Calling a function not compiled as part of Zephyr from within Zephyr
#nrf52480
Hi,
I sent a reply using the reply function on the message board site but it seems to have been a private message not a general reply. I fixed this off-by-one issue as I was calling at the function
Hi,
I sent a reply using the reply function on the message board site but it seems to have been a private message not a general reply. I fixed this off-by-one issue as I was calling at the function
|
By
lairdjm
·
#5413
·
|
|
Re: Confirm your gabriel.wang@arm.com email address
Hi Gabriel,
Confirming that you are subscribed to the devel mail list, so you should have no issues sending, or receiving, messages -
Thanks!
Brett
--
Brett Preston
Sr. Program Manager
The Linux
Hi Gabriel,
Confirming that you are subscribed to the devel mail list, so you should have no issues sending, or receiving, messages -
Thanks!
Brett
--
Brett Preston
Sr. Program Manager
The Linux
|
By
Brett Preston
·
#5412
·
|
|
Confirm your gabriel.wang@arm.com email address
Hi Zephyr Group
I would like to send and receive message.
Messages will be sent to you at gabriel.wang@...
Send messages to devel@...
Best Regards
Gabriel Wang
Embedded &
Hi Zephyr Group
I would like to send and receive message.
Messages will be sent to you at gabriel.wang@...
Send messages to devel@...
Best Regards
Gabriel Wang
Embedded &
|
By
Gabriel Wang
·
#5411
·
|