|
Re: Zephyr 1.14.1 tagged
It looks like we need a PR to master to change doc/config.py to reference 1.14.1
It looks like we need a PR to master to change doc/config.py to reference 1.14.1
|
By
David Leach
·
#6374
·
|
|
API meeting: Agenda
Hi all,
This week we will look at:
- GPIO: Update on progress
- Look at the PRs with driver conversion
- Check the timeline
- Debouncing:
Hi all,
This week we will look at:
- GPIO: Update on progress
- Look at the PRs with driver conversion
- Check the timeline
- Debouncing:
|
By
Carles Cufi
·
#6373
·
|
|
Re: DATA_DTCM and NETWORKING Hello World
Hi Alessandro,
could you create github issue about the slowness of the networking
stack, we can then discuss more about the issue there.
Cheers,
Jukka
wrote:
Hi Alessandro,
could you create github issue about the slowness of the networking
stack, we can then discuss more about the issue there.
Cheers,
Jukka
wrote:
|
By
Jukka Rissanen
·
#6372
·
|
|
Re: Power Management
Stefan, Erwan
thank you for your feedback
Cheers,
Adam
Stefan, Erwan
thank you for your feedback
Cheers,
Adam
|
By
Adam Podogrocki
·
#6371
·
|
|
Re: Zephyr 1.14.1 tagged
The 1.14.1 docs are here: https://docs.zephyrproject.org/1.14.1/
We still need to update the indexes everywhere to point to the new dot release.
David, where should this be changed? (show 1.14.1
The 1.14.1 docs are here: https://docs.zephyrproject.org/1.14.1/
We still need to update the indexes everywhere to point to the new dot release.
David, where should this be changed? (show 1.14.1
|
By
Nashif, Anas
·
#6370
·
|
|
Re: Zephyr 1.14.1 tagged
Hi Marc,
That's awesome and useful, thanks!
- Pushpal
Hi Marc,
That's awesome and useful, thanks!
- Pushpal
|
By
Pushpal Sidhu
·
#6369
·
|
|
Re: Zephyr 1.14.1 tagged
Extremely useful workaround:
https://github.com/zephyrproject-rtos/zephyr/commits/v1.14-branch
\-> https://github.com/zephyrproject-rtos/zephyr/pull/19639
Extremely useful workaround:
https://github.com/zephyrproject-rtos/zephyr/commits/v1.14-branch
\-> https://github.com/zephyrproject-rtos/zephyr/pull/19639
|
By
Marc Herbert
·
#6368
·
|
|
Re: Zephyr 1.14.1 tagged
Hi Anas,
This is great, thank you. I had a question on the documentation - I
can't seem to find the 1.14.1 docs. I see
https://docs.zephyrproject.org/1.14.0/, just no 1.14.1. Is the
Hi Anas,
This is great, thank you. I had a question on the documentation - I
can't seem to find the 1.14.1 docs. I see
https://docs.zephyrproject.org/1.14.0/, just no 1.14.1. Is the
|
By
Pushpal Sidhu
·
#6367
·
|
|
Re: Power Management
Hi Adam,
We've started to push briks to enable power management on STM32.
Two first PRs are:
- https://github.com/zephyrproject-rtos/zephyr/pull/18582 that enable LPTIMER to enable a tick source in
Hi Adam,
We've started to push briks to enable power management on STM32.
Two first PRs are:
- https://github.com/zephyrproject-rtos/zephyr/pull/18582 that enable LPTIMER to enable a tick source in
|
By
Erwan Gouriou
·
#6366
·
|
|
Power Management
Hi everyone,
I am looking forward to some description or a hint how to utilize Power Management in STM32L0/L4 MCU family. System will work in power constraint environment. I've seen some HAL based
Hi everyone,
I am looking forward to some description or a hint how to utilize Power Management in STM32L0/L4 MCU family. System will work in power constraint environment. I've seen some HAL based
|
By
Adam Podogrocki
·
#6365
·
|
|
Zephyr 1.14.1 tagged
Hi,
We are pleased to announce that we have tagged the first 1.14 maintenance releasewith fixes, as well as Bluetooth
qualification listings for the Bluetooth protocol stack included in Zephyr.
Hi,
We are pleased to announce that we have tagged the first 1.14 maintenance releasewith fixes, as well as Bluetooth
qualification listings for the Bluetooth protocol stack included in Zephyr.
|
By
Nashif, Anas
·
#6364
·
|
|
Re: PR #17628: sys_heap benchmarks?
Oh weird - I was on the developer call last week and everyone agreed it would be merged. Is there a merge window then?
I have but no luck so far.
In any case, are there some benchmarks available for
Oh weird - I was on the developer call last week and everyone agreed it would be merged. Is there a merge window then?
I have but no luck so far.
In any case, are there some benchmarks available for
|
By
Christopher Friedt
·
#6362
·
|
|
Re: PR #17628: sys_heap benchmarks?
This hasn't merged yet and was never the backend for malloc() or k_mem_pool, are you pulling it locally and writing code to its internal API?
Have you tried a simple git bisect over your tree to look
This hasn't merged yet and was never the backend for malloc() or k_mem_pool, are you pulling it locally and writing code to its internal API?
Have you tried a simple git bisect over your tree to look
|
By
Andy Ross
·
#6361
·
|
|
PR #17628: sys_heap benchmarks?
Recently a sys_heap change went into zephyr
https://github.com/zephyrproject-rtos/zephyr/pull/17628
The PR says that it's faster, but I'm seeing some behaviour that would
suggest that's not the
Recently a sys_heap change went into zephyr
https://github.com/zephyrproject-rtos/zephyr/pull/17628
The PR says that it's faster, but I'm seeing some behaviour that would
suggest that's not the
|
By
Christopher Friedt
·
#6360
·
|
|
Re: NRF52840 select clock source from external XTAL HFXO
Something like this should work:
struct device *clk_dev = device_get_binding(DT_INST_0_NORDIC_NRF_CLOCK_LABEL "_16M");
clock_control_on(clk_dev, (void *)1);
Jim
Something like this should work:
struct device *clk_dev = device_get_binding(DT_INST_0_NORDIC_NRF_CLOCK_LABEL "_16M");
clock_control_on(clk_dev, (void *)1);
Jim
|
By
jim@...
·
#6359
·
|
|
NRF52840 select clock source from external XTAL HFXO
Hello Zephyr Community,
We work on board based on NRF52840 using zephyr. We are encountering problems to communicate with a device using UARTE at 9600 bit/s.
We observe that the current speed is
Hello Zephyr Community,
We work on board based on NRF52840 using zephyr. We are encountering problems to communicate with a device using UARTE at 9600 bit/s.
We observe that the current speed is
|
By
Alexis Cogrel <alexis.cogrel@...>
·
#6358
·
|
|
Re: how to get the verbose output the check the compile details using west?
The "west -vvv build" line is correct, but will potentially enable a lot
more verbose output than is desired. The -v option can be given multiple
times, and west build includes compiler output when
The "west -vvv build" line is correct, but will potentially enable a lot
more verbose output than is desired. The -v option can be given multiple
times, and west build includes compiler output when
|
By
Bolivar, Marti
·
#6357
·
|
|
Upcoming Event: Zephyr Project: Dev Meeting - Thu, 10/03/2019 8:00am-9:00am, Please RSVP
#cal-reminder
Reminder: Zephyr Project: Dev Meeting
When: Thursday, 3 October 2019, 8:00am to 9:00am, (GMT-07:00) America/Los Angeles
Where:https://zoom.us/j/993312203
An RSVP is requested. Click here to
Reminder: Zephyr Project: Dev Meeting
When: Thursday, 3 October 2019, 8:00am to 9:00am, (GMT-07:00) America/Los Angeles
Where:https://zoom.us/j/993312203
An RSVP is requested. Click here to
|
By
devel@lists.zephyrproject.org Calendar <devel@...>
·
#6356
·
|
|
Dev-Review Meeting Agenda (Oct 3)
Here’s the agenda topics for this week:
kernel: Introduce k_triggered_work:
https://github.com/zephyrproject-rtos/zephyr/pull/14041
Let me know if anyone has any other topics.
- k
Here’s the agenda topics for this week:
kernel: Introduce k_triggered_work:
https://github.com/zephyrproject-rtos/zephyr/pull/14041
Let me know if anyone has any other topics.
- k
|
By
Kumar Gala
·
#6355
·
|
|
Re: how to get the verbose output the check the compile details using west?
Even simpler:
west -vvv build samples/hello_world
Even simpler:
west -vvv build samples/hello_world
|
By
Carles Cufi
·
#6354
·
|