mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 04:46:29 +00:00
OpenThread requires platform definition with standarized API so we have to add wrappers to make it compatible with Zephyr. OpenThread is based on autoconf, this requires more specific CMakeLists.txt which allows to clone specific commit or point to local copy of openthread. Signed-off-by: Kamil Sroka <kamil.sroka@nordicsemi.no>
13 lines
237 B
C
13 lines
237 B
C
/*
|
|
* Copyright (c) 2018 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_MBEDTLS_CONFIG_H_
|
|
#define ZEPHYR_MBEDTLS_CONFIG_H_
|
|
|
|
#define MBEDTLS_PLATFORM_EXIT_ALT
|
|
|
|
#endif /* ZEPHYR_MBEDTLS_CONFIG_H_ */
|