|
Re: Adding Nucleo-F030R8 support to Zephyr - runtime error
Hi Maciej and Bobby,
you can collaborate on Maciej github repository and push this commit
as a PR there and then to Zephyr's repo.
@Booby You declare vector_table_src as constant and the you change
Hi Maciej and Bobby,
you can collaborate on Maciej github repository and push this commit
as a PR there and then to Zephyr's repo.
@Booby You declare vector_table_src as constant and the you change
|
By
Yannis Damigos
·
#917
·
|
|
Re: how to conditionally link a static library in Zephyr?
Hello,
"Li, Jun R" <jun.r.li@...> wrote:
Well, that's not specific enough. It's not enough to define a config
option "in a Kconfig file somewhere" for it to be actually available in
Zephyr
Hello,
"Li, Jun R" <jun.r.li@...> wrote:
Well, that's not specific enough. It's not enough to define a config
option "in a Kconfig file somewhere" for it to be actually available in
Zephyr
|
By
Paul Sokolovsky
·
#916
·
|
|
Re: Adding Nucleo-F030R8 support to Zephyr - runtime error
Hello Bobby,
amazing, thank you for doing this!
Yes, it works on my Nucleo-F030R8, hello world and blinky, both are fine.
Try to emphasize that this is related to my patch, so these should be released
Hello Bobby,
amazing, thank you for doing this!
Yes, it works on my Nucleo-F030R8, hello world and blinky, both are fine.
Try to emphasize that this is related to my patch, so these should be released
|
By
Maciej Dębski <maciej.debski@...>
·
#915
·
|
|
Re: Remove/change fs_truncate() API
Hello,
Andrzej Kaczmarek <andrzej.kaczmarek@...> wrote:
ENOTSUP is your friend (except Linux thinks it should be EPERM, see
below).
POSIX has
Hello,
Andrzej Kaczmarek <andrzej.kaczmarek@...> wrote:
ENOTSUP is your friend (except Linux thinks it should be EPERM, see
below).
POSIX has
|
By
Paul Sokolovsky
·
#914
·
|
|
Remove/change fs_truncate() API
Hi,
I was trying to implement fs_truncate() for NFFS but this does not
seem to be possible in a reasonable way, at least not with current
NFFS API. The only option I see now is to copy contents to
Hi,
I was trying to implement fs_truncate() for NFFS but this does not
seem to be possible in a reasonable way, at least not with current
NFFS API. The only option I see now is to copy contents to
|
By
Andrzej Kaczmarek
·
#913
·
|
|
Re: Adding Nucleo-F030R8 support to Zephyr - runtime error
Hello Maciej,
I assume the problem is - as Yannis pointed out - the code triggers a write to flash which stops in some way execution.
The commit "arch: arm: core: fix vector table relocate write to
Hello Maciej,
I assume the problem is - as Yannis pointed out - the code triggers a write to flash which stops in some way execution.
The commit "arch: arm: core: fix vector table relocate write to
|
By
Bobby
·
#912
·
|
|
Re: Bluetooth mesh - error when proxy connected
Hi Jehudi,
You could try e.g. the attached patch. It should change the error into a
warning when the connection limit is reached.
Johan
Hi Jehudi,
You could try e.g. the attached patch. It should change the error into a
warning when the connection limit is reached.
Johan
|
By
Johan Hedberg
·
#911
·
|
|
how to conditionally link a static library in Zephyr?
Hi there,
I’m trying to build my zephyr app with a static library which is not provided with its source code. I can achieve the goal by adding the following two lines in my project’s Makefile:
Hi there,
I’m trying to build my zephyr app with a static library which is not provided with its source code. I can achieve the goal by adding the following two lines in my project’s Makefile:
|
By
Li, Jun R
·
#910
·
|
|
Re: Bluetooth mesh - error when proxy connected
Hi Jehudi,
I think those errors are mostly harmless. What's happening is that the
code tries to re-enable connectable advertising, however since the
controller only supports one connection it results
Hi Jehudi,
I think those errors are mostly harmless. What's happening is that the
code tries to re-enable connectable advertising, however since the
controller only supports one connection it results
|
By
Johan Hedberg
·
#909
·
|
|
Bluetooth mesh - error when proxy connected
Hi,
I am using bluetooth mesh on zephyr. As soon as I make a proxy
connection to a node I am getting errors:
[bt] [ERR] node_id_adv: Failed to advertise using Node ID (err -5)
and after some time
Hi,
I am using bluetooth mesh on zephyr. As soon as I make a proxy
connection to a node I am getting errors:
[bt] [ERR] node_id_adv: Failed to advertise using Node ID (err -5)
and after some time
|
By
laczenJMS
·
#908
·
|
|
Re: Counter API ambiguity.
Hi,
Baohong can correct me. I believe this is the number of counter ticks for the counter to send a notification. User would not need to know what current counter value is; when the API is called,
Hi,
Baohong can correct me. I believe this is the number of counter ticks for the counter to send a notification. User would not need to know what current counter value is; when the API is called,
|
By
Tseng, Kuo-Lang <kuo-lang.tseng@...>
·
#907
·
|
|
Re: Counter API ambiguity.
Baohong,
I see you contributed these APIs to Zephyr, can you help us understand the intention with the "count" parameter to count_set_alarm()?
Baohong,
I see you contributed these APIs to Zephyr, can you help us understand the intention with the "count" parameter to count_set_alarm()?
|
By
Boie, Andrew P
·
#906
·
|
|
Re: Zephyr DFU protocol
Hi David,
By
Carles Cufi
·
#905
·
|
|
Re: Bluetooth mesh - provisioning with static OOB
Hi Johan,
The patch solves the issue.
Kind regards,
Jehudi
2017-09-01 12:18 GMT+02:00 Johan Hedberg <johan.hedberg@...>:
Hi Johan,
The patch solves the issue.
Kind regards,
Jehudi
2017-09-01 12:18 GMT+02:00 Johan Hedberg <johan.hedberg@...>:
|
By
laczenJMS
·
#904
·
|
|
Re: Bluetooth mesh - provisioning with static OOB
Hi,
After cross-checking with the Mesh spec this does look like a clear bug
to me, so I've opened a PR for it:
https://github.com/zephyrproject-rtos/zephyr/pull/1325
If things still don't work
Hi,
After cross-checking with the Mesh spec this does look like a clear bug
to me, so I've opened a PR for it:
https://github.com/zephyrproject-rtos/zephyr/pull/1325
If things still don't work
|
By
Johan Hedberg
·
#903
·
|
|
Re: Bluetooth mesh - provisioning with static OOB
Hi Jehudi,
I took a look at the Zephyr prov.c code, and it looks like there's a
possible off-by-one error in setting the Static OOB type value in the
Provisioning Capabilities PDU. Does the attached
Hi Jehudi,
I took a look at the Zephyr prov.c code, and it looks like there's a
possible off-by-one error in setting the Static OOB type value in the
Provisioning Capabilities PDU. Does the attached
|
By
Johan Hedberg
·
#902
·
|
|
Bluetooth mesh - provisioning with static OOB
Hi,
I would like to create a zephyr bluetooth mesh node with a public key
using static OOB provisioning. I tried using
static uint8_t static_key[16] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xab,
0xcd,
Hi,
I would like to create a zephyr bluetooth mesh node with a public key
using static OOB provisioning. I tried using
static uint8_t static_key[16] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xab,
0xcd,
|
By
laczenJMS
·
#901
·
|
|
Re: Counter API ambiguity.
Hi Tomasz, Andrew
Do you have any feedback for Michal regarding the issue below?
Thanks!
Carles
Hi Tomasz, Andrew
Do you have any feedback for Michal regarding the issue below?
Thanks!
Carles
|
By
Carles Cufi
·
#900
·
|
|
Re: Zephyr DFU protocol
I think we should go ahead and start the conversation with them, on
mailing lists.
Unfortunately, the Mynewt mailing lists add a Reply-to header, which
causes that list to "steal" replies that are
I think we should go ahead and start the conversation with them, on
mailing lists.
Unfortunately, the Mynewt mailing lists add a Reply-to header, which
causes that list to "steal" replies that are
|
By
David Brown
·
#899
·
|
|
Re: Zephyr DFU protocol
I'm not sure it was written down, or just verbal or IRC chat. I
didn't find any logs about it.
Currently, the bootloader doesn't really "load" anything, since it is
only being used on
I'm not sure it was written down, or just verbal or IRC chat. I
didn't find any logs about it.
Currently, the bootloader doesn't really "load" anything, since it is
only being used on
|
By
David Brown
·
#898
·
|