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

FOTA not working in custom board NCS

Hi,

I have tested FOTA code in nRF52840 DK and it works perfect but i have custom board build with nrf52840 when i implement the code it doesn't get start

custom board not have 32.768khz crystal

Parents Reply
  • changed CMAkelists.txt like this

    #
    # Copyright (c) 2018 Nordic Semiconductor
    #
    # SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Nordic
    #
    cmake_minimum_required(VERSION 3.13.1)
    
    find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
    project(NONE)
    
    # NORDIC SDK APP START
    target_sources(app PRIVATE
      src/main.c
    )
    
    list(APPEND mcuboot_OVERLAY_CONFIG
      "${CMAKE_CURRENT_SOURCE_DIR}/child_image/mcuboot.conf"
      )
      
    # NORDIC SDK APP END
    
    zephyr_library_include_directories(.)
    

    but no change

Children
Related