1 /* 2 * Copyright (c) 2017 Oticon A/S 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #ifndef _NRF_HW_MODEL_FICR_H 7 #define _NRF_HW_MODEL_FICR_H 8 9 #include "nrfx.h" 10 11 #ifdef __cplusplus 12 extern "C"{ 13 #endif 14 15 void nrf_ficr_init(); 16 void nrf_ficr_clean_up(); 17 18 #ifdef __cplusplus 19 } 20 #endif 21 22 #endif 23