1 /*
2  * Copyright (c) 2022 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef __MCUBOOT_CONFIG_H__
8 #define __MCUBOOT_CONFIG_H__
9 
10 /*
11  * This file is included by the simulator, but we don't want to
12  * define almost anything here.
13  *
14  * Instead of using mcuboot_config.h, the simulator adds MCUBOOT_xxx
15  * configuration flags to the compiler command lines based on the
16  * values of environment variables. However, the file still must
17  * exist, or bootutil won't build.
18  */
19 
20 #define MCUBOOT_WATCHDOG_FEED()         \
21     do {                                \
22     } while (0)
23 
24 #define MCUBOOT_CPU_IDLE() \
25     do {                                \
26     } while (0)
27 
28 #endif /* __MCUBOOT_CONFIG_H__ */
29