blob: de9ecafb11cef5791ca26599fd1f900f6226bf4b [file] [log] [blame]
Marti Bolivar51181cf2017-03-20 11:03:41 -04001/*
2 * Copyright (C) 2017, Linaro Ltd
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6#ifndef H_TARGETS_TARGET_
7#define H_TARGETS_TARGET_
8
Marti Bolivar29d3a772017-03-20 10:44:25 -04009/* Board-specific definitions go first, to allow maximum override. */
Marti Bolivar51181cf2017-03-20 11:03:41 -040010#if defined(MCUBOOT_TARGET_CONFIG)
11#include MCUBOOT_TARGET_CONFIG
12#else
13#error "Board is currently not supported by bootloader"
14#endif
15
Marti Bolivar29d3a772017-03-20 10:44:25 -040016/* SoC family configuration. */
17#if defined(CONFIG_SOC_FAMILY_NRF5)
18#include "soc_family_nrf5.h"
19#endif
20
Marti Bolivar51181cf2017-03-20 11:03:41 -040021#endif