1 /* 2 * Copyright (c) 2023 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef _NRF_HW_MODEL_NHW_MISC_H 8 #define _NRF_HW_MODEL_NHW_MISC_H 9 10 #include <stdbool.h> 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 const char *nhw_get_core_name(unsigned int core_n); 17 18 #ifdef __cplusplus 19 } 20 #endif 21 22 #endif /* _NRF_HW_MODEL_NHW_MISC_H */ 23