|
Re: Zephyr (v1.13.0) HCI_UART running on nRF52 DK why BD address is always 00:00:00:00:00:00 after power cycle
#nrf52832
Hi Carles,
Thanks for the feedback.
It seems the Qt QLowerEnergyController object selects the first valid address different from the zero address for addressing the HCI controller/adapter. In my case
Hi Carles,
Thanks for the feedback.
It seems the Qt QLowerEnergyController object selects the first valid address different from the zero address for addressing the HCI controller/adapter. In my case
|
By
frv
·
#5381
·
Edited
|
|
Re: lwip integration with OpenThread
#nrf52840
#lwip
#openthread
Hi Paul,
I have found it in this link - https://github.com/zephyrproject-rtos/zephyr/issues/10561
By referring the config file also we can able to find Echo client and server example can be built for
Hi Paul,
I have found it in this link - https://github.com/zephyrproject-rtos/zephyr/issues/10561
By referring the config file also we can able to find Echo client and server example can be built for
|
By
deepa.gopinath@...
·
#5380
·
|
|
Re: thread permissions issue
I managed to solve this by calling
"k_thread_access_grant(k_current_get(), dev, NULL)" before calling the
"Z_SYSCALL_DRIVER_SENSOR" macro.
This question remains open.
I managed to solve this by calling
"k_thread_access_grant(k_current_get(), dev, NULL)" before calling the
"Z_SYSCALL_DRIVER_SENSOR" macro.
This question remains open.
|
By
Diego Sueiro
·
#5379
·
|
|
thread permissions issue
Hello Zephyrs,
I'm developing a shell module for the sensor drivers and I want to
validate if the device name passed from the user is a sensor device.
I have the CONFIG_USERSAPCE=y.
After calling
Hello Zephyrs,
I'm developing a shell module for the sensor drivers and I want to
validate if the device name passed from the user is a sensor device.
I have the CONFIG_USERSAPCE=y.
After calling
|
By
Diego Sueiro
·
#5378
·
|
|
Re: Zephyr Project using Eclipse
Hi Nick,
Once you’ve generated your project with CMake and imported it into Eclipse, you can edit source files in Eclipse and click the “Make” button to recompile your application.
Just be
Hi Nick,
Once you’ve generated your project with CMake and imported it into Eclipse, you can edit source files in Eclipse and click the “Make” button to recompile your application.
Just be
|
By
Maureen Helm
·
#5377
·
|
|
Zephyr Project using Eclipse
Hello,
I want to develop applications using the FRDM-K64F board from NXP using Eclipse. Is there any way to use Eclipse as an IDE and create a program, then flash it onto the board? I want to do
Hello,
I want to develop applications using the FRDM-K64F board from NXP using Eclipse. Is there any way to use Eclipse as an IDE and create a program, then flash it onto the board? I want to do
|
By
Nicholas Yameen <Nicholas.Yameen@...>
·
#5376
·
|
|
Re: __ASSERT - transfer to error handler
We do dump this info to the console on a fatal CPU exception. On x86 there's even a crude stack trace.
But it would be nice, if running some application under GDB, for the exception to simply break
We do dump this info to the console on a fatal CPU exception. On x86 there's even a crude stack trace.
But it would be nice, if running some application under GDB, for the exception to simply break
|
By
Boie, Andrew P
·
#5375
·
|
|
Re: __ASSERT - transfer to error handler
It's better to call k_oops() or k_panic() than _SysFatalErrorHandler() directly. You will actually get useful information about where the error occurred, instead of having to pass in a NULL exception
It's better to call k_oops() or k_panic() than _SysFatalErrorHandler() directly. You will actually get useful information about where the error occurred, instead of having to pass in a NULL exception
|
By
Boie, Andrew P
·
#5374
·
|
|
Re: Zephyr: FDRM_K64f board from NXP
Thanks everyone, I will have a look at the DTS.
Cheers,
From: Diego Sueiro [mailto:diego.sueiro@...]
Sent: Friday, November 9, 2018 10:32 AM
To: Andrei <andrei.emeltchenko.news@...>
Cc:
Thanks everyone, I will have a look at the DTS.
Cheers,
From: Diego Sueiro [mailto:diego.sueiro@...]
Sent: Friday, November 9, 2018 10:32 AM
To: Andrei <andrei.emeltchenko.news@...>
Cc:
|
By
Florian Fouillet <Florian.Fouillet@...>
·
#5373
·
|
|
Re: Zephyr: FDRM_K64f board from NXP
Take a look at the documentation to understand how this process works:
https://docs.zephyrproject.org/latest/devices/dts/device_tree.html
Take a look at the documentation to understand how this process works:
https://docs.zephyrproject.org/latest/devices/dts/device_tree.html
|
By
Diego Sueiro
·
#5372
·
|
|
Re: Zephyr: FDRM_K64f board from NXP
Hi,
It is done somehow through DTS, you need to search i.e.
./zephyr/include/generated/generated_dts_board.h
Best regards
Andrei Emeltchenko
Hi,
It is done somehow through DTS, you need to search i.e.
./zephyr/include/generated/generated_dts_board.h
Best regards
Andrei Emeltchenko
|
By
Andrei
·
#5371
·
|
|
Zephyr: FDRM_K64f board from NXP
Hi,
I am currently working on the Zephyr OS with a FDRM_K64f board from NXP. I am just going through the documentation and the code example for now.
I have trouble to understand where is the
Hi,
I am currently working on the Zephyr OS with a FDRM_K64f board from NXP. I am just going through the documentation and the code example for now.
I have trouble to understand where is the
|
By
Florian Fouillet <Florian.Fouillet@...>
·
#5370
·
|
|
Zephyr 1.13.0 HCI_UART running on nRF52 DK why BD address is always 00:00:00:00:00:00 after power cycle
Hallo Zephyr community,
Anyone knowing why the BD address is always the ZERO address, when using the nRF52 board running the Zephyr HCI uart hex.
I also see that the random address remains the
Hallo Zephyr community,
Anyone knowing why the BD address is always the ZERO address, when using the nRF52 board running the Zephyr HCI uart hex.
I also see that the random address remains the
|
By
Vieren Frank <F.Vieren@...>
·
#5369
·
|
|
__ASSERT - transfer to error handler
Current implementation:
The __ASSERT macro is extensively used in the Zephyr codebase and in application code for debugging during development.
In case of an ASSERT, the code jumps to __ASSERT_POST
Current implementation:
The __ASSERT macro is extensively used in the Zephyr codebase and in application code for debugging during development.
In case of an ASSERT, the code jumps to __ASSERT_POST
|
By
Skøien, Kristoffer <Kristoffer.Skoien@...>
·
#5368
·
|
|
Re: __ASSERT - transfer to error handler
Thanks for your reply Paul.
Perhaps something simliar to this:
#if defined(CONFIG_ARCH_POSIX)
extern void posix_exit(int exit_code);
#define __ASSERT_POST posix_exit(1)
#elif
Thanks for your reply Paul.
Perhaps something simliar to this:
#if defined(CONFIG_ARCH_POSIX)
extern void posix_exit(int exit_code);
#define __ASSERT_POST posix_exit(1)
#elif
|
By
kristoffer.skoien@...
·
#5367
·
|
|
Re: Zephyr (v1.13.0) HCI_UART running on nRF52 DK why BD address is always 00:00:00:00:00:00 after power cycle
#nrf52832
Hi there,
The *public* address is all zeroes because Nordic ICs do not come with one pre-assigned. The *random static* address is set by BlueZ itself, so it will be whatever BlueZ decides it to
Hi there,
The *public* address is all zeroes because Nordic ICs do not come with one pre-assigned. The *random static* address is set by BlueZ itself, so it will be whatever BlueZ decides it to
|
By
Carles Cufi
·
#5366
·
|
|
Re: __ASSERT - transfer to error handler
Hello Kristoffer,
As a quick reply, definitely ack on the problem statement. I can say
more, I'm patiently waiting for a paradise times when on CPU exception,
assert, etc., we'll be ending up in
Hello Kristoffer,
As a quick reply, definitely ack on the problem statement. I can say
more, I'm patiently waiting for a paradise times when on CPU exception,
assert, etc., we'll be ending up in
|
By
Paul Sokolovsky
·
#5365
·
|
|
Zephyr (v1.13.0) HCI_UART running on nRF52 DK why BD address is always 00:00:00:00:00:00 after power cycle
#nrf52832
Hallo Zephyr community,
Anyone knowing why the BD address is always the ZERO address, when using the nRF52 board running the Zephyr HCI uart hex.
I also see that the random address remains the
Hallo Zephyr community,
Anyone knowing why the BD address is always the ZERO address, when using the nRF52 board running the Zephyr HCI uart hex.
I also see that the random address remains the
|
By
frv
·
#5364
·
|
|
Re: #nrf52840 #ble unstable connection
#nrf52840
#ble
https://github.com/zephyrproject-rtos/zephyr/pull/11231
Could you please test the PR on your board and let me know if its better.
Find attach the patch file as alternative to the diff in PR. Use
https://github.com/zephyrproject-rtos/zephyr/pull/11231
Could you please test the PR on your board and let me know if its better.
Find attach the patch file as alternative to the diff in PR. Use
|
By
Chettimada, Vinayak Kariappa
·
#5363
·
|
|
__ASSERT - transfer to error handler
Current implementation:
The __ASSERT macro is extensively used in the Zephyr code base and in application code for debugging during development.
In case of an ASSERT, the code jumps to __ASSERT_POST
Current implementation:
The __ASSERT macro is extensively used in the Zephyr code base and in application code for debugging during development.
In case of an ASSERT, the code jumps to __ASSERT_POST
|
By
kristoffer.skoien@...
·
#5362
·
|