|
Re: question in zephyrproject
I had this same problem. My solution was to export PYTHONPATH to include the directory containing this module. If you went through the instructions, installing all the dependencies, it is installed on
I had this same problem. My solution was to export PYTHONPATH to include the directory containing this module. If you went through the instructions, installing all the dependencies, it is installed on
|
By
Allen Curtis
·
#6285
·
|
|
W25Qxx extern Flash
Hello,
I currently work on custom board with Zephyr and W25Q80 extern flash memory.
I see that zephyr already got driver for W25QXX and yaml for W25Q16 but driver use some define like
Hello,
I currently work on custom board with Zephyr and W25Q80 extern flash memory.
I see that zephyr already got driver for W25QXX and yaml for W25Q16 but driver use some define like
|
By
Gaspard Rigolot <gaspard.rigolot@...>
·
#6284
·
|
|
Re: question in zephyrproject
Hello
Did you do the install python dependencies step? https://docs.zephyrproject.org/latest/getting_started/index.html#install-python-dependencies
Best regards
Hello
Did you do the install python dependencies step? https://docs.zephyrproject.org/latest/getting_started/index.html#install-python-dependencies
Best regards
|
By
Serafin
·
#6283
·
|
|
question in zephyrproject
Hello.
This is Jaemin from Samsung Electronics and we are trying to set the environment up for Zephyr with https://docs.zephyrproject.org/latest/getting_started/index.html.
Everything went
Hello.
This is Jaemin from Samsung Electronics and we are trying to set the environment up for Zephyr with https://docs.zephyrproject.org/latest/getting_started/index.html.
Everything went
|
By
최재민 <jaeminy.choi@...>
·
#6282
·
|
|
API meeting: agenda
Hi all,
This week we will look at:
- Sensor API: Update on progress
- GPIO: Update on progress
- Merge https://github.com/zephyrproject-rtos/zephyr/pull/16648 to topic-gpio. CI issues are
Hi all,
This week we will look at:
- Sensor API: Update on progress
- GPIO: Update on progress
- Merge https://github.com/zephyrproject-rtos/zephyr/pull/16648 to topic-gpio. CI issues are
|
By
Carles Cufi
·
#6281
·
|
|
Re: Listen for "USB_DETECTED" events?
Hey Pawel,
I noticed `int usb_dc_ep_set_callback(const u8_t ep, const usb_dc_ep_callback cb);` in `usb_dc.h`, but using them doesn't sound so stable to me. Since `usb_dc_ep_set_callback` actually
Hey Pawel,
I noticed `int usb_dc_ep_set_callback(const u8_t ep, const usb_dc_ep_callback cb);` in `usb_dc.h`, but using them doesn't sound so stable to me. Since `usb_dc_ep_set_callback` actually
|
By
Benjamin Lindqvist
·
#6280
·
|
|
Re: Listen for "USB_DETECTED" events?
Have you checked USB_DC_CONNECTED event? You can get it through a callback given while registering a class device.
Have you checked USB_DC_CONNECTED event? You can get it through a callback given while registering a class device.
|
By
pawel.dunaj@...
·
#6279
·
|
|
Re: Zephyr's k_sleep gets stuck on nRF52832
Version 1.14.99 suggests you have a snapshot of the development series leading up to the recent 2.0 release. The problem you're reporting was fixed in #17845 in upstream Zephyr 2019-08-01. It may be
Version 1.14.99 suggests you have a snapshot of the development series leading up to the recent 2.0 release. The problem you're reporting was fixed in #17845 in upstream Zephyr 2019-08-01. It may be
|
By
Peter A. Bigot
·
#6278
·
|
|
Zephyr's k_sleep gets stuck on nRF52832
Hello All,
We were seeing an issue that occasionally, all tasks waiting for a timeout using k_sleep get stuck in the suspended state (while other tasks continue to run normally), and then after
Hello All,
We were seeing an issue that occasionally, all tasks waiting for a timeout using k_sleep get stuck in the suspended state (while other tasks continue to run normally), and then after
|
By
Kimberly Langland <KimL@...>
·
#6277
·
|
|
Listen for "USB_DETECTED" events?
Hi,
Going through the APIs today looking for a public function for discerning if we are connected to something (i.e. we are supplied by VBUS) but I couldn't find anything. There is some internal API
Hi,
Going through the APIs today looking for a public function for discerning if we are connected to something (i.e. we are supplied by VBUS) but I couldn't find anything. There is some internal API
|
By
Benjamin Lindqvist
·
#6276
·
|
|
Upcoming Event: Zephyr Project: Dev Meeting - Thu, 09/12/2019 8:00am-9:00am, Please RSVP
#cal-reminder
Reminder: Zephyr Project: Dev Meeting
When: Thursday, 12 September 2019, 8:00am to 9:00am, (GMT-07:00) America/Los Angeles
Where:https://zoom.us/j/993312203
An RSVP is requested. Click here
Reminder: Zephyr Project: Dev Meeting
When: Thursday, 12 September 2019, 8:00am to 9:00am, (GMT-07:00) America/Los Angeles
Where:https://zoom.us/j/993312203
An RSVP is requested. Click here
|
By
devel@lists.zephyrproject.org Calendar <devel@...>
·
#6275
·
|
|
Dev Review Meeting Agenda - 12 Sept 2019
Here’s the issues/PRs on the agenda so far for this week’s Dev Review Meeting:
* posix: Kconfig: Allow to enable individual components, POSIX_API just enables all
Here’s the issues/PRs on the agenda so far for this week’s Dev Review Meeting:
* posix: Kconfig: Allow to enable individual components, POSIX_API just enables all
|
By
Kumar Gala
·
#6274
·
|
|
Re: c++ application development
#nrf52840
Not until we get #19002 and then #18464 merged. Since I'm the one with concerns about those I'll work to get them in next week if that's possible. For now you could make progress by taking 18464
Not until we get #19002 and then #18464 merged. Since I'm the one with concerns about those I'll work to get them in next week if that's possible. For now you could make progress by taking 18464
|
By
Peter A. Bigot
·
#6273
·
|
|
Re: c++ application development
#nrf52840
Hi,
Is there source for memory allocation using new other than k_malloc ?
Because in my application want to use memory alloation from free heap not from the heap memory pool.
Hi,
Is there source for memory allocation using new other than k_malloc ?
Because in my application want to use memory alloation from free heap not from the heap memory pool.
|
By
Narendar Malepu
·
#6272
·
|
|
Re: c++ application development
#nrf52840
Dynamic memory allocation is supported in Zephyr C++, though you have to enable a source for the memory. You should not have to define overloads for those
Dynamic memory allocation is supported in Zephyr C++, though you have to enable a source for the memory. You should not have to define overloads for those
|
By
Peter A. Bigot
·
#6271
·
|
|
c++ application development
#nrf52840
Hi,
we are developing an application in c++, for dynamic memory allocation using new as operator overloading as below
void *operator new(size_t size)
{
void *p = malloc(size);
return p;
}
void
Hi,
we are developing an application in c++, for dynamic memory allocation using new as operator overloading as below
void *operator new(size_t size)
{
void *p = malloc(size);
return p;
}
void
|
By
Narendar Malepu
·
#6270
·
|
|
Re: west and (no) data loss, was: Re: [Zephyr-users] Do not use west v0.6.1; upgrade to v0.6.2
Hello Marti,
"Bolivar, Marti" <Marti.Bolivar@...> wrote:
[]
It definitely does, and I much appreciate the detailed response
(hopefully you wrote it not just as a response, but also a
Hello Marti,
"Bolivar, Marti" <Marti.Bolivar@...> wrote:
[]
It definitely does, and I much appreciate the detailed response
(hopefully you wrote it not just as a response, but also a
|
By
Paul Sokolovsky
·
#6269
·
|
|
RTIO API, Other potential uses
Hi Everyone,
I've been steadily and surely working on a new API, primarily aimed at sensors, but has been split in such a way that device drivers could extend the base API of configuring a stream with
Hi Everyone,
I've been steadily and surely working on a new API, primarily aimed at sensors, but has been split in such a way that device drivers could extend the base API of configuring a stream with
|
By
Tom Burdick
·
#6268
·
|
|
Upcoming Event: Zephyr Project: APIs - Tue, 09/10/2019 9:00am-10:00am, Please RSVP
#cal-reminder
Reminder: Zephyr Project: APIs
When: Tuesday, 10 September 2019, 9:00am to 10:00am, (GMT-07:00) America/Los Angeles
Where:https://zoom.us/j/177647878
An RSVP is requested. Click here to
Reminder: Zephyr Project: APIs
When: Tuesday, 10 September 2019, 9:00am to 10:00am, (GMT-07:00) America/Los Angeles
Where:https://zoom.us/j/177647878
An RSVP is requested. Click here to
|
By
devel@lists.zephyrproject.org Calendar <devel@...>
·
#6267
·
|
|
API meeting: Agenda
Hi all,
This week we will look at:
- GPIO: Update on progress
- Roadmap for GPIO inclusion: https://github.com/zephyrproject-rtos/zephyr/issues/18530
- Merge
Hi all,
This week we will look at:
- GPIO: Update on progress
- Roadmap for GPIO inclusion: https://github.com/zephyrproject-rtos/zephyr/issues/18530
- Merge
|
By
Carles Cufi
·
#6266
·
|