Zephyr API Documentation 4.2.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
xip.h
Go to the documentation of this file.
1/*
2 * Copyright The Zephyr Project Contributors
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6#ifndef ZEPHYR_ARCH_INCLUDE_XIP_H_
7#define ZEPHYR_ARCH_INCLUDE_XIP_H_
8
9#ifndef _ASMLANGUAGE
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14#ifdef CONFIG_XIP
15void arch_data_copy(void);
16#else
17static inline void arch_data_copy(void)
18{
19 /* Do nothing */
20}
21#endif /* CONFIG_XIP */
22#ifdef __cplusplus
23}
24#endif
25
26#endif /* _ASMLANGUAGE */
27#endif /* ZEPHYR_ARCH_INCLUDE_XIP_H_ */
static void arch_data_copy(void)
Definition xip.h:17