|
Re: k_sleep on mimxrt1050_evk board
Are you building a tickless kernel? Note that k_uptime_get_32() requires you to explicitly enable the clock (c.f. k_enable_sys_clock_always_on()) if you want to count ticks.
Are you building a tickless kernel? Note that k_uptime_get_32() requires you to explicitly enable the clock (c.f. k_enable_sys_clock_always_on()) if you want to count ticks.
|
By
Andy Ross
·
#891
·
|
|
Re: #BluetoothMesh: if Node reprovisioned then it not get stored on SoC flash
Hi Johan,
Which app you used for testing ?
Is it samples/boards/nrf52/mesh/onoff-app by adding persistent storage support ?
Could you please test it for PR:8296 by removing NVS from it ?
Thanks!!
Hi Johan,
Which app you used for testing ?
Is it samples/boards/nrf52/mesh/onoff-app by adding persistent storage support ?
Could you please test it for PR:8296 by removing NVS from it ?
Thanks!!
|
By
vikrant8051 <vikrant8051@...>
·
#890
·
|
|
Re: k_sleep on mimxrt1050_evk board
I did some further tests,
threads and scheduler are basically working, i used these two functions:
void thread_1(void *dummy1, void *dummy2, void *dummy3)
{
int loops = 1;
while(1) {
I did some further tests,
threads and scheduler are basically working, i used these two functions:
void thread_1(void *dummy1, void *dummy2, void *dummy3)
{
int loops = 1;
while(1) {
|
By
marco.hoefle@...
·
#889
·
|
|
Re: #BluetoothMesh: if Node reprovisioned then it not get stored on SoC flash
Hi Vikrant,
I understood what you meant. And those are the steps I followed. I used
Nordic's new iOS mesh app and used its "node reset" feature. Then I
reprovisioned and after that did a power-cycle.
Hi Vikrant,
I understood what you meant. And those are the steps I followed. I used
Nordic's new iOS mesh app and used its "node reset" feature. Then I
reprovisioned and after that did a power-cycle.
|
By
Johan Hedberg
·
#888
·
|
|
Re: #BluetoothMesh: if Node reprovisioned then it not get stored on SoC flash
Hi Johan,
I've completely removed NVS from my local project.
Even after that facing same issue.
If you provision & configure -> reset the board -> then it work as expected.
But I'm not talking
Hi Johan,
I've completely removed NVS from my local project.
Even after that facing same issue.
If you provision & configure -> reset the board -> then it work as expected.
But I'm not talking
|
By
vikrant8051 <vikrant8051@...>
·
#887
·
|
|
Re: #BluetoothMesh: if Node reprovisioned then it not get stored on SoC flash
Hi Vikrant,
I just tried your exact steps with the mesh_shell app, and it works
correctly (i.e. after the power cycle the board comes back as
provisioned). I used the nRF51 USB dongle, fwiw. Is it
Hi Vikrant,
I just tried your exact steps with the mesh_shell app, and it works
correctly (i.e. after the power cycle the board comes back as
provisioned). I used the nRF51 USB dongle, fwiw. Is it
|
By
Johan Hedberg
·
#886
·
|
|
Re: I am not able to configure pins as an input pin using the Zephyr OS API
#nrf52832
#input
#gpio
Hi Rajat,
I would suggest you take a look at samples/basic/button for inspiration of using the input pins and modify it to out to the LEDs.
Regards,
Vinayak
Hi Rajat,
I would suggest you take a look at samples/basic/button for inspiration of using the input pins and modify it to out to the LEDs.
Regards,
Vinayak
|
By
Chettimada, Vinayak Kariappa <vinayak.kariappa.chettimada@...>
·
#885
·
|
|
Re: #BluetoothMesh: if Node reprovisioned then it not get stored on SoC flash
Hi Johan,
It is with default #FCB.
Hi Johan,
It is with default #FCB.
|
By
vikrant8051 <vikrant8051@...>
·
#884
·
|
|
Re: #BluetoothMesh: if Node reprovisioned then it not get stored on SoC flash
Hi Vikrant,
Is this with NFFS or FCB? I remember testing this with FCB and it worked
correctly.
Johan
Hi Vikrant,
Is this with NFFS or FCB? I remember testing this with FCB and it worked
correctly.
Johan
|
By
Johan Hedberg
·
#883
·
|
|
Re: #BluetoothMesh: if Node reprovisioned then it not get stored on SoC flash
Hi,
Yes, I confirmed my observation. And happening this every time.
I also tried it with #nRFMesh app. In that case too, if I do
(provision + configuration) -> ( node-reset ) -> (provision +
Hi,
Yes, I confirmed my observation. And happening this every time.
I also tried it with #nRFMesh app. In that case too, if I do
(provision + configuration) -> ( node-reset ) -> (provision +
|
By
vikrant8051 <vikrant8051@...>
·
#882
·
|
|
k_sleep on mimxrt1050_evk board
Hello,
I got the job to evaluate zephyr on a mimxrt1050_evk board.
I followed the instructions and could successfully download the hello world sample project.
Next step was to enhance the project with
Hello,
I got the job to evaluate zephyr on a mimxrt1050_evk board.
I followed the instructions and could successfully download the hello world sample project.
Next step was to enhance the project with
|
By
marco.hoefle@...
·
#881
·
|
|
#BluetoothMesh: if Node reprovisioned then it not get stored on SoC flash
Hi,
If after complete or partial provisioning, execute node-reset command then in that case I have observe following things :
1) Node get reprovision
2) but after reboot, it boot as unprovisioned
Hi,
If after complete or partial provisioning, execute node-reset command then in that case I have observe following things :
1) Node get reprovision
2) but after reboot, it boot as unprovisioned
|
By
vikrant8051 <vikrant8051@...>
·
#880
·
|
|
I am not able to configure pins as an input pin using the Zephyr OS API
#nrf52832
#input
#gpio
Hi Everyone,
Pardon me if i write some illogical stuff. Complete beginner to this microcontroller.
I started using nrf52832 with Zephyr OS . I was trying to configure the pin as a input pin and
Hi Everyone,
Pardon me if i write some illogical stuff. Complete beginner to this microcontroller.
I started using nrf52832 with Zephyr OS . I was trying to configure the pin as a input pin and
|
By
Rajat Kalyan
·
#879
·
|
|
ieee802154: csma-ca: random backoff factor looks wrong
The calculation for the random backoff factor looks wrong [1]:
u8_t bo_n = sys_rand32_get() & (2 << (be + 1));
This generates either a power-of-two number or zero for bo_n, because it only overlaps a
The calculation for the random backoff factor looks wrong [1]:
u8_t bo_n = sys_rand32_get() & (2 << (be + 1));
This generates either a power-of-two number or zero for bo_n, because it only overlaps a
|
By
Franco Saworski <franco.saworski@...>
·
#878
·
|
|
Re: Zephyr development news, 11 June 2018
Hi again,
I forgot to mention that (as usual) an HTML version is also available:
https://opensourcefoundries.com/blog/2018/06/11/zephyr-news-20180611/
Sorry about that.
Marti
Hi again,
I forgot to mention that (as usual) an HTML version is also available:
https://opensourcefoundries.com/blog/2018/06/11/zephyr-news-20180611/
Sorry about that.
Marti
|
By
Marti Bolivar
·
#877
·
|
|
Zephyr development news, 11 June 2018
Hello and happy release day,
Please note that we've renamed the series to "Zephyr development news"
to avoid a name clash with another publication.
This is the 11 June 2018 newsletter tracking the
Hello and happy release day,
Please note that we've renamed the series to "Zephyr development news"
to avoid a name clash with another publication.
This is the 11 June 2018 newsletter tracking the
|
By
Marti Bolivar
·
#876
·
|
|
Re: is it possible to enable LE Coded PHY for #BluetoothMesh Nodes / #BLE devices?
#ble
#bluetoothmesh
Hi Vikrant,
Advertising on Coded PHY needs the implementation of Extended Advertising feature of BT V5.0. This feature has not been implementation, only a initial effort was attempted.
That said, any
Hi Vikrant,
Advertising on Coded PHY needs the implementation of Extended Advertising feature of BT V5.0. This feature has not been implementation, only a initial effort was attempted.
That said, any
|
By
Chettimada, Vinayak Kariappa <vinayak.kariappa.chettimada@...>
·
#875
·
|
|
is it possible to enable LE Coded PHY for #BluetoothMesh Nodes / #BLE devices?
#ble
#bluetoothmesh
Hi,
http://blog.bluetooth.com/exploring-bluetooth-5-going-the-distance
Is concept of, LE Codded PHY present in current Zephyr implementation to increase range
between two #BluetoothMesh Nodes ?
What
Hi,
http://blog.bluetooth.com/exploring-bluetooth-5-going-the-distance
Is concept of, LE Codded PHY present in current Zephyr implementation to increase range
between two #BluetoothMesh Nodes ?
What
|
By
vikrant8051 <vikrant8051@...>
·
#874
·
|
|
Re: [Solved] Segger RTT support
My prj.conf file for beacon app:
CONFIG_BT=y
CONFIG_BT_DEBUG_LOG=n
CONFIG_BT_DEVICE_NAME="Test
My prj.conf file for beacon app:
CONFIG_BT=y
CONFIG_BT_DEBUG_LOG=n
CONFIG_BT_DEVICE_NAME="Test
|
By
Marcio Montenegro
·
#873
·
|
|
Re: Segger RTT support
Hi Marcio,
Can you try adding:
CONFIG_UART_CONSOLE=n
to your prj.conf?
More info here:
http://docs.zephyrproject.org/tools/nordic_segger.html#rtt-console
Regards,
Carles
Hi Marcio,
Can you try adding:
CONFIG_UART_CONSOLE=n
to your prj.conf?
More info here:
http://docs.zephyrproject.org/tools/nordic_segger.html#rtt-console
Regards,
Carles
|
By
Carles Cufi
·
#872
·
|