I use nRF5_SDK_for_Thread_and_Zigbee_2.0.0_29775ac.
Example nRF5_SDK_for_Thread_and_Zigbee_2.0.0_29775ac\examples\thread\cli\uart\pca10056.
define BOARD_PCA10059.

But I use nrf Connect Programmer check.

What should I do? Transplant 10056 to 10059.
I use nRF5_SDK_for_Thread_and_Zigbee_2.0.0_29775ac.
Example nRF5_SDK_for_Thread_and_Zigbee_2.0.0_29775ac\examples\thread\cli\uart\pca10056.
define BOARD_PCA10059.

But I use nrf Connect Programmer check.

What should I do? Transplant 10056 to 10059.
Hi.
The nRF52840 Dongle does not use UART, it uses USB.
Try the project found in examples\thread\cli\usb\pca10056, you also have to adjust the FLASH and RAM settings as explained in the secton Adapt a simple example (without SoftDevice) in the nRF52840 Dongle Programming Tutorial.
FLASH_PH_START=0x0 FLASH_PH_SIZE=0x100000 RAM_PH_START=0x20000000 RAM_PH_SIZE=0x40000 FLASH_START=0x1000 FLASH_SIZE=0xDF000 RAM_START=0x20000008 RAM_SIZE=0x3FFF8
In the code snippet above you can see what I used.
Best regards,
Andreas
Hi.
The nRF52840 Dongle does not use UART, it uses USB.
Try the project found in examples\thread\cli\usb\pca10056, you also have to adjust the FLASH and RAM settings as explained in the secton Adapt a simple example (without SoftDevice) in the nRF52840 Dongle Programming Tutorial.
FLASH_PH_START=0x0 FLASH_PH_SIZE=0x100000 RAM_PH_START=0x20000000 RAM_PH_SIZE=0x40000 FLASH_START=0x1000 FLASH_SIZE=0xDF000 RAM_START=0x20000008 RAM_SIZE=0x3FFF8
In the code snippet above you can see what I used.
Best regards,
Andreas
Hi AndreasF:
Thanks for you support.
But I compared PCA10056 with PCA10059 demo. Setting up ram is the same as flash.
Like this:

Hi.
That example you have compared with uses a SoftDevice, the Thread example does not use a SoftDevice.
You should use the values i posted in my previous reply.
Best regards,
Andreas