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

nRF Connect SDK v1.1.0 not having pca20035 board

I have followed the instructions in nRF Connect 3.3.0 - getting started assistant to setup my nRF connect SDK.

I proceed to set the nrf repo to v1.1.0 branch (last stable at the moment, right?) then proceed to do west update.

I then tried to open the asset tracker application and notice there is no pca20035 board to select... the folder board folder is not there... I tried to add it as said here without success...

My ultimate goal is to flash the 9160 in the thingy91 using an nrf9160 dk (I have both devices and the cable) and want to do small changes to the code to start getting into it and do my own stuff.

Can someone point me to the right direction?, thanks!

Parents
  • Hi! 

     

    notice there is no pca20035 board to select.

     Where are you trying to select this board? 

    The board folder for the Thingy:91 can be found in ncs/nrf/boards/arm (either nRF9160_pca20035 or nRF52840_pca20035).

    Are you using a terminal or SES?

    My ultimate goal is to flash the 9160 in the thingy91 using an nrf9160 dk (I have both devices and the cable) and want to do small changes to the code to start getting into it and do my own stuff.

     This should absolutely not be a problem! We just need to figure out why you can't select pca20035.

    Best regards,

    Heidi

  • Are you using a terminal or SES?

    I am using powershell to configure the repos and west as nRF Connect 3.3.0 - getting started assistant suggested. Is this what you wanted to know?

    The board folder for the Thingy:91 can be found in ncs/nrf/boards/arm (either nRF9160_pca20035 or nRF52840_pca20035).

    As I'm programming the nrf9160 which is the one that interfaces with the sensors and report that data over the LTE-M (which is what I want to modify) I was assuming that I needed to select nRF9160_pca20035 board... can I use the nRF52840_pca20035 if I want to flash the nrf9160? anyway that isn't available in my setup...

    Where are you trying to select this board? 

    When loading the board in the open nRF connect SDK project menu in SES:

    This is the tag I am using for the nrf repo

    I did checkout to that tag then proceed to use  "west update" as per nRF Connect 3.3.0 - getting started assistant instructed...

    I do not know what else I can tell to provide more insight on what might be happening...

    Thanks for the help!

  • Hi Luis,

    The board for the Thingy:91 is in the NRF folder as Heidi mentioned and not the zephyr folder like the nRF9160 DK is. You should navigate to ncs\nrf\boards\arm\nrf9160_pca20035

    You can also find the nrf52840_pca20035 in the same path (\ncs\nrf\boards\arm) which is used for developing for the nRF52840 on the Thingy:91 board.

  • Hi Akash,

    My bad, I overlooked the path, I can download the binary now, thanks!

    I want to decrease the period with which the data is send to nrfcloud...

    I see that there is a delay in sending the events to send_env_data_work, to be CONFIG_ENVIRONMENT_DATA_SEND_INTERVAL, but it is defined in 3 configs.c, which is the one used by the application? where can I start looking into how this sample app works?

    k_delayed_work_submit(&send_env_data_work,K_SECONDS(CONFIG_ENVIRONMENT_DATA_SEND_INTERVAL));

Reply
  • Hi Akash,

    My bad, I overlooked the path, I can download the binary now, thanks!

    I want to decrease the period with which the data is send to nrfcloud...

    I see that there is a delay in sending the events to send_env_data_work, to be CONFIG_ENVIRONMENT_DATA_SEND_INTERVAL, but it is defined in 3 configs.c, which is the one used by the application? where can I start looking into how this sample app works?

    k_delayed_work_submit(&send_env_data_work,K_SECONDS(CONFIG_ENVIRONMENT_DATA_SEND_INTERVAL));

Children
Related