|
NFFS support removal
NFFS support will be removed from the zephyr-project codebase.
It was decided to take such action as NFFS has few serious issue which made it unreliable (Such issues were not fixed since a long
NFFS support will be removed from the zephyr-project codebase.
It was decided to take such action as NFFS has few serious issue which made it unreliable (Such issues were not fixed since a long
|
By
Puzdrowski, Andrzej
·
#6644
·
|
|
Re: ARM Cortex-R user mode -- should system call handlers be running with external interrupts disabled?
Phil,
I sent a PR which adds a test for this:
https://github.com/zephyrproject-rtos/zephyr/pull/21920
It passes on all the emulated targets we have (including Cortex-M), but if this is
Phil,
I sent a PR which adds a test for this:
https://github.com/zephyrproject-rtos/zephyr/pull/21920
It passes on all the emulated targets we have (including Cortex-M), but if this is
|
By
Boie, Andrew P
·
#6643
·
|
|
Re: ARM Cortex-R user mode -- should system call handlers be running with external interrupts disabled?
Interrupts should be unlocked when handling system calls, and indeed a thread in a system call can sleep or be preempted. Sounds like you have found a bug. And a gap in testing, we ought to have a
Interrupts should be unlocked when handling system calls, and indeed a thread in a system call can sleep or be preempted. Sounds like you have found a bug. And a gap in testing, we ought to have a
|
By
Boie, Andrew P
·
#6642
·
|
|
Re: Porting Zephyr HCI Layer
Hi Johan
Thank you for your quick reply.
Yes, as you mentioned and as I already understand, hci_uart is for separating the controller and host on different chips.
In this situation, I need to run my
Hi Johan
Thank you for your quick reply.
Yes, as you mentioned and as I already understand, hci_uart is for separating the controller and host on different chips.
In this situation, I need to run my
|
By
ryan.kayesimmons@...
·
#6641
·
|
|
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
·
#6640
·
|
|
Upcoming Event: Zephyr Project: APIs - Tue, 01/14/2020 9:00am-10:00am, Please RSVP
#cal-reminder
Reminder: Zephyr Project: APIs
When: Tuesday, 14 January 2020, 9:00am to 10:00am, (GMT-08:00) America/Los Angeles
Where:https://zoom.us/j/177647878
An RSVP is requested. Click here to
Reminder: Zephyr Project: APIs
When: Tuesday, 14 January 2020, 9:00am to 10:00am, (GMT-08:00) America/Los Angeles
Where:https://zoom.us/j/177647878
An RSVP is requested. Click here to
|
By
devel@lists.zephyrproject.org Calendar <devel@...>
·
#6639
·
|
|
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
·
#6638
·
|
|
Re: Porting Zephyr HCI Layer
Hi Ryan,
What do you mean by a “Host application”? A Bluetooth host application? Using what APIs?
That’s a bit confusing. hci_uart is for cases where the Bluetooth controller and host are on
Hi Ryan,
What do you mean by a “Host application”? A Bluetooth host application? Using what APIs?
That’s a bit confusing. hci_uart is for cases where the Bluetooth controller and host are on
|
By
Johan Hedberg
·
#6637
·
|
|
ARM Cortex-R user mode -- should system call handlers be running with external interrupts disabled?
I've noticed that on ARM Cortex-R with user mode enabled, that when we enter the system call handlers, such as z_hdlr_k_str_out(), that interrupts are disabled. It seems to me that external
I've noticed that on ARM Cortex-R with user mode enabled, that when we enter the system call handlers, such as z_hdlr_k_str_out(), that interrupts are disabled. It seems to me that external
|
By
Phil Erwin Jr
·
#6636
·
|
|
Porting Zephyr HCI Layer
Hi there,
I am currently trying to port the Zephyr HCI UART example (for nrf52840_pca10056) to FreeRTOS but and am having some difficulties doing so. The reasoning behind this is that I want to
Hi there,
I am currently trying to port the Zephyr HCI UART example (for nrf52840_pca10056) to FreeRTOS but and am having some difficulties doing so. The reasoning behind this is that I want to
|
By
ryan.kayesimmons@...
·
#6635
·
|
|
Re: Pinmux override
Morning,
As Erwan was telling, IMHO the pinmux variant is a good solution. For example if you doing power saving, you might power down parts of you pcb. Just image the case that you have a peripheral
Morning,
As Erwan was telling, IMHO the pinmux variant is a good solution. For example if you doing power saving, you might power down parts of you pcb. Just image the case that you have a peripheral
|
By
Stefan Jaritz
·
#6634
·
|
|
Re: Pinmux override
Looks like https://lists.zephyrproject.org/g/devel/topic/61321118
Looks like https://lists.zephyrproject.org/g/devel/topic/61321118
|
By
Marc Herbert
·
#6633
·
|
|
Re: Pinmux override
Hi all,
Device trees are used during compile time within Zephyr.
But what if you want to support several hardware revisions in the same binary?
(E.g. based on stored hw id or so)
To minimize the
Hi all,
Device trees are used during compile time within Zephyr.
But what if you want to support several hardware revisions in the same binary?
(E.g. based on stored hw id or so)
To minimize the
|
By
Vincent - VLoTech
·
#6632
·
|
|
RFC: API: Counter: counter_read() has no way of indicating failure
Hi all,
Our current counter API has a function for reading the current counter value (counter_read()) which does not allow indicating read failure in a standard way.
I have submitted an RFC for
Hi all,
Our current counter API has a function for reading the current counter value (counter_read()) which does not allow indicating read failure in a standard way.
I have submitted an RFC for
|
By
Henrik Brix Andersen
·
#6631
·
|
|
Re: Pinmux override
Hi Allen,
Pinmuxing is one of the remaining areas where device tree is not in use (except for socs with specific pin management such as nrf).
So we still rely on the c definition for this.
Cheers
Hi Allen,
Pinmuxing is one of the remaining areas where device tree is not in use (except for socs with specific pin management such as nrf).
So we still rely on the c definition for this.
Cheers
|
By
Erwan Gouriou
·
#6630
·
|
|
Re: Pinmux override
I am obviously showing my ignorance here but I thought Zephyr was using device tree for this stuff.
--
Allen Curtis
Medical Device Architect
Critical Software Solutions, LLC
I am obviously showing my ignorance here but I thought Zephyr was using device tree for this stuff.
--
Allen Curtis
Medical Device Architect
Critical Software Solutions, LLC
|
By
Allen Curtis
·
#6629
·
|
|
Re: Pinmux override
Hi,
Modifying board pinmux.c (along with boards .dst nd Kconfig.defconfig) is indeed the way to enable the device. It cannot be done otherwise.
Once this is done (and tested ok) you can submit the
Hi,
Modifying board pinmux.c (along with boards .dst nd Kconfig.defconfig) is indeed the way to enable the device. It cannot be done otherwise.
Once this is done (and tested ok) you can submit the
|
By
Erwan Gouriou
·
#6628
·
|
|
Pinmux override
Hi all,
I am using the stm32f4_disco board and I am trying to use the i2c ports, but it is not defined in pinmux.c and I must thzn modify this file to add the I2C configuration. Is there a better way
Hi all,
I am using the stm32f4_disco board and I am trying to use the i2c ports, but it is not defined in pinmux.c and I must thzn modify this file to add the I2C configuration. Is there a better way
|
By
Joris Offouga
·
#6627
·
|
|
Upcoming Event: Zephyr Project: Dev Meeting - Thu, 01/09/2020 8:00am-9:00am, Please RSVP
#cal-reminder
Reminder: Zephyr Project: Dev Meeting
When: Thursday, 9 January 2020, 8:00am to 9:00am, (GMT-08:00) America/Los Angeles
Where:https://zoom.us/j/993312203
An RSVP is requested. Click here to
Reminder: Zephyr Project: Dev Meeting
When: Thursday, 9 January 2020, 8:00am to 9:00am, (GMT-08:00) America/Los Angeles
Where:https://zoom.us/j/993312203
An RSVP is requested. Click here to
|
By
devel@lists.zephyrproject.org Calendar <devel@...>
·
#6626
·
|
|
Dev-Review Meeting Agenda (Jan 9)
Here’s the agenda topics for this week:
* drivers: allow to retrieve device structure by the name prefix:
[ https://github.com/zephyrproject-rtos/zephyr/pull/21709 ]
* dt topics
If there’s
Here’s the agenda topics for this week:
* drivers: allow to retrieve device structure by the name prefix:
[ https://github.com/zephyrproject-rtos/zephyr/pull/21709 ]
* dt topics
If there’s
|
By
Kumar Gala
·
#6625
·
|