1 /* 2 * Copyright (c) 2017 Oticon A/S 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #ifndef NRF_HW_DUMP_TOP_H 7 #define NRF_HW_DUMP_TOP_H 8 9 /** 10 * List of files identifiers this HW models will dump: 11 * This identifiers should be used when referring to the files 12 */ 13 #define NRF_HW_DUMP_FILES_TYPES \ 14 NRF_dummy 15 /*be careful to not have a comma in the last entry*/ 16 17 18 /** 19 * For each file identifier in NRF_HW_DUMP_FILES_TABLE, an entry in the following table should be created 20 * The position in the table gives which identifier it refers to (so keep the order) 21 */ 22 #define NRF_HW_DUMP_FILES_TABLE \ 23 /* File name (suffix) , <dump_level> , <has it been activated> , <file ptr>, <function to dump the header>, */ \ 24 { "NRF_dummy" , 6 , 0 , NULL , NULL },\ 25 /*NRF_dummy just to have something while we dont have anything else (the table cannot be empty)*/ 26 27 28 /** 29 * Prototypes of the header dumping functions: 30 */ 31 32 #endif 33