|
Re: Kernel MS Precision
Yeah, but that is not backwards-compatible with the API. And that only
works for timers, not the other APIs that take timeouts. Although, that
might be irrelevant.
Interesting idea. That could be a
Yeah, but that is not backwards-compatible with the API. And that only
works for timers, not the other APIs that take timeouts. Although, that
might be irrelevant.
Interesting idea. That could be a
|
By
Benjamin Walsh <benjamin.walsh@...>
·
#267
·
|
|
Re: dhcp integration into the platform
Hi Marcus,
<marcus.shawcroft@...> wrote:
Enable/disable was added as an interface to net_if_up and net_if_down,
but since these functions are only supposed to be called from the L2
driver we
Hi Marcus,
<marcus.shawcroft@...> wrote:
Enable/disable was added as an interface to net_if_up and net_if_down,
but since these functions are only supposed to be called from the L2
driver we
|
By
Luiz Augusto von Dentz
·
#265
·
|
|
Re: dhcp integration into the platform
Hi,
Can anyone add some insight on this issue? The code looks to me as if
net_if_up/down() were originally added to provide an enable/disable
semantic, but we have BT using them in what appears to
Hi,
Can anyone add some insight on this issue? The code looks to me as if
net_if_up/down() were originally added to provide an enable/disable
semantic, but we have BT using them in what appears to
|
By
Marcus Shawcroft <marcus.shawcroft@...>
·
#264
·
|
|
Newlib c Library
Hello,
The SDK has a patched newlib c Library. I'm compiling my own Crosscompiler and
I want to ask If it's a official Patch or a Patch made by you? If you made
the Patch, can I get it or the Source
Hello,
The SDK has a patched newlib c Library. I'm compiling my own Crosscompiler and
I want to ask If it's a official Patch or a Patch made by you? If you made
the Patch, can I get it or the Source
|
By
Parka <patka@...>
·
#266
·
|
|
Re: Kernel MS Precision
Hi Ben,
You could also use the full bits and add one additional byte to specify the unit of the number.
Timers store their unit together with duration and period. For example
k_timer_start(timer,
Hi Ben,
You could also use the full bits and add one additional byte to specify the unit of the number.
Timers store their unit together with duration and period. For example
k_timer_start(timer,
|
By
Andreas Lenz
·
#263
·
|
|
Re: dhcp integration into the platform
Option 1) would be ideal for the upcoming WiFi offload devices (like
TI CC3220), which do full TCP/IP offload onto a co-processor,
essentially bypassing the L2 layer.
In that case, there is no need
Option 1) would be ideal for the upcoming WiFi offload devices (like
TI CC3220), which do full TCP/IP offload onto a co-processor,
essentially bypassing the L2 layer.
In that case, there is no need
|
By
Gil Pitney
·
#262
·
|
|
Re: dhcp integration into the platform
Hi Marcus,
<marcus.shawcroft@...> wrote:
Note that the enable/disable semantic was introduced for L2 link
detection, which is why it is an L2/LL API. Now from the discussion we
had in the IRC
Hi Marcus,
<marcus.shawcroft@...> wrote:
Note that the enable/disable semantic was introduced for L2 link
detection, which is why it is an L2/LL API. Now from the discussion we
had in the IRC
|
By
Luiz Augusto von Dentz
·
#261
·
|
|
subject
sir i am doing weather forecasting using zephyr OS. i am deploying arduino 101 and BME 280 sensor to collect data for forecasting. i found less resources about the programming part of Zephyr OS in
sir i am doing weather forecasting using zephyr OS. i am deploying arduino 101 and BME 280 sensor to collect data for forecasting. i found less resources about the programming part of Zephyr OS in
|
By
VISHWANATH REDDY <vishwanathreddy1503@...>
·
#260
·
|
|
hello sir
Glad to see your reply for my message. may i know sir which sector you belongs to in ZEPHYR os development.--
Thank you.
Regards,
Vishwanath. Reddy
Glad to see your reply for my message. may i know sir which sector you belongs to in ZEPHYR os development.--
Thank you.
Regards,
Vishwanath. Reddy
|
By
VISHWANATH REDDY <vishwanathreddy1503@...>
·
#259
·
|
|
Re: dhcp integration into the platform
Hi,
The network interface patches proposed as a result of this thread have
generated a fair amount of discussion both in patch reviews and in
IRC. Now would seem like a good time to summarize where
Hi,
The network interface patches proposed as a result of this thread have
generated a fair amount of discussion both in patch reviews and in
IRC. Now would seem like a good time to summarize where
|
By
Marcus Shawcroft <marcus.shawcroft@...>
·
#258
·
|
|
Re: Kernel MS Precision
ns or us, you still needed 64-bit timeouts for either, which ended up
being the major concern. 64-bit math can be costly: we've seen stack
usage increase of 80 bytes on some architectures. Also, I
ns or us, you still needed 64-bit timeouts for either, which ended up
being the major concern. 64-bit math can be costly: we've seen stack
usage increase of 80 bytes on some architectures. Also, I
|
By
Benjamin Walsh <benjamin.walsh@...>
·
#256
·
|
|
Re: LWM2M: Call for proposals
Hi all
I am a contributor to https://github.com/FlowM2M/AwaLWM2M. We've been working recently on integrating this into a number of different platforms and would love for Awa to be a part of the
Hi all
I am a contributor to https://github.com/FlowM2M/AwaLWM2M. We've been working recently on integrating this into a number of different platforms and would love for Awa to be a part of the
|
By
Matt Vinall <Matt.Vinall@...>
·
#257
·
|
|
Re: Kernel MS Precision
Regarding reserving upper bits, perhaps think about this the other way around. What is the largest sane microsecond sleep? We need only to reserve enough bits to accommodate that...
For example once
Regarding reserving upper bits, perhaps think about this the other way around. What is the largest sane microsecond sleep? We need only to reserve enough bits to accommodate that...
For example once
|
By
Daniel Thompson <daniel.thompson@...>
·
#255
·
|
|
Re: Kernel MS Precision
While Im not sure Im 100% convinced, having negative numbers just be the number in ticks as it was in the old API should be fine. Im curious though why you went for ns when most system wouldn't be
While Im not sure Im 100% convinced, having negative numbers just be the number in ticks as it was in the old API should be fine. Im curious though why you went for ns when most system wouldn't be
|
By
Michael Rosen
·
#254
·
|
|
Re: Kernel MS Precision
Hi Mike,
When prototyping the new API, I started with timeouts as an int64_t in
nanoseconds, to allow the same precision as struct timespec, but without
the akwardness of having to create an instance
Hi Mike,
When prototyping the new API, I started with timeouts as an int64_t in
nanoseconds, to allow the same precision as struct timespec, but without
the akwardness of having to create an instance
|
By
Benjamin Walsh <benjamin.walsh@...>
·
#253
·
|
|
Re: Daily digests...
Hi, I raised https://jira.zephyrproject.org/browse/INF-119 which is
currently assigned to Inaky.
Cheers
/Marcus
Hi, I raised https://jira.zephyrproject.org/browse/INF-119 which is
currently assigned to Inaky.
Cheers
/Marcus
|
By
Marcus Shawcroft <marcus.shawcroft@...>
·
#252
·
|
|
Re: Daily digests...
+1, is there any action to get them back or should we live with it from now on?
+1, is there any action to get them back or should we live with it from now on?
|
By
Erwan Gouriou
·
#251
·
|
|
Kernel MS Precision
Zephyr Devs,
Weve started moving our project from Zephyr 1.5 to Zephyr 1.7. One big change (aside from the really big ones like unified kernel and all that) is that the APIs for timers and others
Zephyr Devs,
Weve started moving our project from Zephyr 1.5 to Zephyr 1.7. One big change (aside from the really big ones like unified kernel and all that) is that the APIs for timers and others
|
By
Michael Rosen
·
#250
·
|
|
Re: NXP FRDM-K64F and OpenOCD from 0.9.0 SDK issue
Hi Maureen,
thanks for reply.
(...)
Yes and I can flash with that version although I get above errors I'm not sure how important is that. Despite working flashing procedure and correctly running
Hi Maureen,
thanks for reply.
(...)
Yes and I can flash with that version although I get above errors I'm not sure how important is that. Despite working flashing procedure and correctly running
|
By
Piotr Król <piotr.krol@...>
·
#249
·
|
|
Re: RFC: Random numbers
Hi Marcus,
<marcus.shawcroft@...> wrote:
From a developer with no much expertise into what does TRNG/PRNG
really means, myself included, Im not sure how using this terms would
improve the
Hi Marcus,
<marcus.shawcroft@...> wrote:
From a developer with no much expertise into what does TRNG/PRNG
really means, myself included, Im not sure how using this terms would
improve the
|
By
Luiz Augusto von Dentz
·
#248
·
|