|
Re: Sample app hello_world fails with z_arm_usage_fault in arm_core_mpu_enable when linked in RAM
Hi Rob,
You can set the following Kconfigs in your prj.conf:
CONFIG_CODE_ITCM=y
CONFIG_DATA_DTCM=y
See soc/arm/nxp_imx/rt/Kconfig.soc for more details.
Maureen
Hi Rob,
You can set the following Kconfigs in your prj.conf:
CONFIG_CODE_ITCM=y
CONFIG_DATA_DTCM=y
See soc/arm/nxp_imx/rt/Kconfig.soc for more details.
Maureen
|
By
Maureen Helm
·
#1868
·
|
|
Re: Feedback requested on west manifest imports
Hello,
I've cut a new west pre-release today (0.6.99.dev5) which is feature complete for manifest imports.
The main new feature since 0.6.99.dev4 is you can now use whitelists and blacklists to
Hello,
I've cut a new west pre-release today (0.6.99.dev5) which is feature complete for manifest imports.
The main new feature since 0.6.99.dev4 is you can now use whitelists and blacklists to
|
By
Bolivar, Marti
·
#1867
·
|
|
Sample app hello_world fails with z_arm_usage_fault in arm_core_mpu_enable when linked in RAM
Hi,
I am running on a nxp i.mx RT1064 eval, board mimxrt1064_evk.
I created a custom linker file to link the app to SRAM. Here are the mods I made to the default linker file
Hi,
I am running on a nxp i.mx RT1064 eval, board mimxrt1064_evk.
I created a custom linker file to link the app to SRAM. Here are the mods I made to the default linker file
|
By
robmcgurrin@...
·
#1866
·
|
|
Re: Windows hosted development
Hi Peter,
As you will have noticed in our Getting Started Guide for Windows (https://docs.zephyrproject.org/latest/getting_started/index.html), we only really propose two solutions:
Using
Hi Peter,
As you will have noticed in our Getting Started Guide for Windows (https://docs.zephyrproject.org/latest/getting_started/index.html), we only really propose two solutions:
Using
|
By
Carles Cufi
·
#1865
·
|
|
SDK 0.11.0 Release
Hi,
Latest version of the SDK can be found here:
https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.11.0
Please download and try things out and report any issues.
General:
• Replaced
Hi,
Latest version of the SDK can be found here:
https://github.com/zephyrproject-rtos/sdk-ng/releases/tag/v0.11.0
Please download and try things out and report any issues.
General:
• Replaced
|
By
Kumar Gala
·
#1864
·
|
|
Windows hosted development
Hi
Are options for windows development documented somewhere. Getting started guide has too many open ended solutions for windows host I think.
There are so many alternatives such as
Two separate
Hi
Are options for windows development documented somewhere. Getting started guide has too many open ended solutions for windows host I think.
There are so many alternatives such as
Two separate
|
By
PeterFromSwe
·
#1863
·
|
|
UART DFU from nRF9160 to nRF52840
I am looking to DFU an nrf52840 over UART from an nRF9160. The board is set up similar to the Thingy:91. The firmware will be downloaded over LTE on the 9160 and will need to be sent over to the 52840
I am looking to DFU an nrf52840 over UART from an nRF9160. The board is set up similar to the Thingy:91. The firmware will be downloaded over LTE on the 9160 and will need to be sent over to the 52840
|
By
ljaynes87@...
·
#1862
·
|
|
Re: API meeting: agenda
Hi all,
I'd like to amend the agenda for today's meeting with the following PRs which have been waiting for resolution for a while:
- PR: Validate pin ordinals in wrapper functions
-
Hi all,
I'd like to amend the agenda for today's meeting with the following PRs which have been waiting for resolution for a while:
- PR: Validate pin ordinals in wrapper functions
-
|
By
Carles Cufi
·
#1861
·
|
|
Re: Signaling/Messaging Userspace from Kernel
Thank you Andrew very much for the explanation! Very helpful.
Justin
Thank you Andrew very much for the explanation! Very helpful.
Justin
|
By
Justin Huang
·
#1860
·
|
|
API meeting: agenda
Hi all,
Tomorrow we will discuss an RFC that is ready to be merged, two items that were raised in last week's TSC and we will check on progress with the GPIO porting.
- RFC (ready to merge): on-off
Hi all,
Tomorrow we will discuss an RFC that is ready to be merged, two items that were raised in last week's TSC and we will check on progress with the GPIO porting.
- RFC (ready to merge): on-off
|
By
Carles Cufi
·
#1859
·
|
|
Re: Signaling/Messaging Userspace from Kernel
I see some examples using callback functions, but wonder if that is a good practice: it is generally a security risk to run a function provided by a userspace application in the supervisor mode.
I see some examples using callback functions, but wonder if that is a good practice: it is generally a security risk to run a function provided by a userspace application in the supervisor mode.
|
By
Boie, Andrew P
·
#1858
·
|
|
Signaling/Messaging Userspace from Kernel
Hi,
Could someone shed some light on ways in Zephyr for Kernel to signal, or send a message to, threads running in the userspace?
I see some examples using callback functions, but wonder if that is a
Hi,
Could someone shed some light on ways in Zephyr for Kernel to signal, or send a message to, threads running in the userspace?
I see some examples using callback functions, but wonder if that is a
|
By
Justin Huang
·
#1857
·
|
|
Re: Removing an item from the Device tree
Excellent solution. Thank you.
Lawrence King
Principal Developer
+1(416)627-7302
Excellent solution. Thank you.
Lawrence King
Principal Developer
+1(416)627-7302
|
By
Lawrence King
·
#1856
·
|
|
Re: Removing an item from the Device tree
You can use /delete-property/, something like:
&uart0 {
/delete-property/ rts-pin;
/delete-property/ cts-pin;
};
In your overlay should work.
- k
You can use /delete-property/, something like:
&uart0 {
/delete-property/ rts-pin;
/delete-property/ cts-pin;
};
In your overlay should work.
- k
|
By
Kumar Gala
·
#1855
·
|
|
Removing an item from the Device tree
I have a little problem with the device tree
In zephyrproject/zephyr/boards/arm/nrf52840_mdk/nrf52840_mdk.dts the uart is defined as:
&uart0 {
compatible = "nordic,nrf-uart";
I have a little problem with the device tree
In zephyrproject/zephyr/boards/arm/nrf52840_mdk/nrf52840_mdk.dts the uart is defined as:
&uart0 {
compatible = "nordic,nrf-uart";
|
By
Lawrence King
·
#1854
·
|
|
Re: NVS on flash with erase page size 64k or larger
#nvs
NVS on flash with erase page size 64k or larger #nvs
Marco
Jan 2 #1824
Hi there
> In my application I try to use NVS on an external SPI flash (M25P16) which has an erase page size of 64k.
>
NVS on flash with erase page size 64k or larger #nvs
Marco
Jan 2 #1824
Hi there
> In my application I try to use NVS on an external SPI flash (M25P16) which has an erase page size of 64k.
>
|
By
Puzdrowski, Andrzej <Andrzej.Puzdrowski@...>
·
#1853
·
|
|
Re: Feedback requested on west manifest imports
Just had a read through your documentation; it looks nice. Have not
tested the code, but judging from the documentation, it looks useful.
Thank you :-)
~Jørn
Just had a read through your documentation; it looks nice. Have not
tested the code, but judging from the documentation, it looks useful.
Thank you :-)
~Jørn
|
By
Jørn Villesen Christensen <jvc@...>
·
#1852
·
|
|
DTS/Binding Issue migrating from 2.0.0 to 2.1.0
#nrf52832
Hello Zephyr Users,
I have inherited a Zephyr project using nRF52832 from another developer and am having an issue migrating from 2.0.0 to 2.1.0. Its probably something simple but I'm fairly new to
Hello Zephyr Users,
I have inherited a Zephyr project using nRF52832 from another developer and am having an issue migrating from 2.0.0 to 2.1.0. Its probably something simple but I'm fairly new to
|
By
matt@...
·
#1851
·
|
|
Feedback requested on west manifest imports
Hello Zephyr users and developers,
We've just uploaded a pre-release version of west to PyPI with a new
feature: manifest imports. We would like your feedback!
For a short README you can follow to
Hello Zephyr users and developers,
We've just uploaded a pre-release version of west to PyPI with a new
feature: manifest imports. We would like your feedback!
For a short README you can follow to
|
By
Bolivar, Marti
·
#1850
·
|
|
API meeting: Agenda
Hi all,
This week we will focus on a new RFC and GPIO.
- RFC: New counter_get_value() API call
- https://github.com/zephyrproject-rtos/zephyr/issues/21846
- GPIO: Update on progress
- Proposal
Hi all,
This week we will focus on a new RFC and GPIO.
- RFC: New counter_get_value() API call
- https://github.com/zephyrproject-rtos/zephyr/issues/21846
- GPIO: Update on progress
- Proposal
|
By
Carles Cufi
·
#1849
·
|