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

Adding my application specific files to the nrf9160aws_fota project.

I need to add new files to the aws fota example for the nrf9160 project in order to implement compatibility with the 

AWS OTA update agent, I have read other posts in the Dev Zone about this issue but no one has made a simple

clear explanation. I know that I can edit the CMakeList.txt file that contains main.c and add new source files.

However, when I try to add the references to the needed include files they are not found  by the project. Please

provide a simple set of instructions on how to add files. And please do not just send links to the website. These

links do not have the correct information.

Kind regards,

Hilary Michel

Parents
  • Hi.

    Do you use SES or something else?

    Do you try to add your own files, or use a part of the SDK?

    If you try to add a library that is part of the nRF Connect SDK, you usually need to enable some configuration options. To know what options you should set, you can either use menuconfig to search for options, or you can read the Kconfig and CMakeLists files directly.

    E.g., in ncs/nrf/subsys/net/lib/CMakeLists.txt we find the line

    add_subdirectory_ifdef(CONFIG_AWS_FOTA aws_fota)

    This tells us that to use the AWS FOTA library, we need to add CONFIG_AWS_FOTA=y to our prj.conf.

    Do you have any specific error messages you can share so that I can give more concrete examples?

    Best regards,

    Didrik

Reply
  • Hi.

    Do you use SES or something else?

    Do you try to add your own files, or use a part of the SDK?

    If you try to add a library that is part of the nRF Connect SDK, you usually need to enable some configuration options. To know what options you should set, you can either use menuconfig to search for options, or you can read the Kconfig and CMakeLists files directly.

    E.g., in ncs/nrf/subsys/net/lib/CMakeLists.txt we find the line

    add_subdirectory_ifdef(CONFIG_AWS_FOTA aws_fota)

    This tells us that to use the AWS FOTA library, we need to add CONFIG_AWS_FOTA=y to our prj.conf.

    Do you have any specific error messages you can share so that I can give more concrete examples?

    Best regards,

    Didrik

Children
Related