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

  • I am using Segger Embedded Studio (SES)

    I am trying to add my own source and header files to the Project 'app/libapp/a'

    I am able to add 'c' files

    I have also added include folders

    But the project can't find the header files included in those folders.

    You will see that there are no triangles next to aws_iot_ota_agent.c

    in the first screen capture above indicating that the header files were

    not found

  • You should be able to add additional include directories by adding the following function call to your CMakeLists.txt (which was taken from the asset_tracker):

    # Include application events and configuration headers
    zephyr_library_include_directories(
      src/orientation_detector
      src/ui
      src/cloud_codec
      src/env_sensors
      src/light_sensor
      )

    Remember that you have to load the project into SES again after doing changes to the CMakeLists.txt file.

  • Thank you that did allow the build to work. However the dependencies (include files) don't show up like they do for main.c

Reply Children
Related