This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Thread CLI not working in BC840DK

Hi I am testing the Thread examples

I worked on SIMPLE_COAP_EXAMPLE in nrf52840 DK there it works fine while opening UART and enter to CLI commands and its working

but i have implement same code to the board BC840DK where the uart pins are P1.01,P1.02 (RX,TX)

I can doubt that due to uart pin change the cli doesn't work for bc840dk but i don't know where to config the cli uart lines

Parents Reply
  • Hi Jorgen

    I tried

    NRF_POWER->DCDCEN = 1;
    NRF_POWER->DCDCEN0 = 1;

    in FTD Thread coAP example but

    power it still 11.67mA.

    I understand this ticket not cover this but this is my last query .

    1. How to access low power using register access

     /* LOW POWER SETUP */
        int err_code = sd_power_mode_set(NRF_POWER_MODE_LOWPWR);
        APP_ERROR_CHECK(err_code);

        err_code = sd_power_dcdc_mode_set(NRF_POWER_DCDC_ENABLE);
        APP_ERROR_CHECK(err_code);

    2. Is there any examples or documentation that how to use or build full project using registers Like (accessing clock, RTC, TWI,SPI,UART,LED Peripherals IO)

    3. I have gone through MTD CoAP example . my understand is it will work only as child . it will not be router or leader any more. and it will not do auto commissioning . if so how to commission the device to set it as child or leader or router.

    4. If device is leader or router then it will consume more power?

Children
Related