1 /****************************************************************************** 2 * @file rsi_ccp_user_config.h 3 ******************************************************************************* 4 * # License 5 * <b>Copyright 2024 Silicon Laboratories Inc. www.silabs.com</b> 6 ******************************************************************************* 7 * 8 * SPDX-License-Identifier: Zlib 9 * 10 * The licensor of this software is Silicon Laboratories Inc. 11 * 12 * This software is provided 'as-is', without any express or implied 13 * warranty. In no event will the authors be held liable for any damages 14 * arising from the use of this software. 15 * 16 * Permission is granted to anyone to use this software for any purpose, 17 * including commercial applications, and to alter it and redistribute it 18 * freely, subject to the following restrictions: 19 * 20 * 1. The origin of this software must not be misrepresented; you must not 21 * claim that you wrote the original software. If you use this software 22 * in a product, an acknowledgment in the product documentation would be 23 * appreciated but is not required. 24 * 2. Altered source versions must be plainly marked as such, and must not be 25 * misrepresented as being the original software. 26 * 3. This notice may not be removed or altered from any source distribution. 27 * 28 ******************************************************************************/ 29 30 /*rsi_ccp_user_config.h --> user configurations w.r.t CCP*/ 31 32 /* To enable 917 chip --> Add #define SLI_SI917 */ 33 /* To enable 9116 chip --> Add #define CHIP_9118 */ 34 /* To enable 9115 chip --> Add #define CHIP_915 */ 35 36 /* #define CHIP_9118 */ 37 /* #define CHIP_915 */ 38 //#define SLI_SI917 39 40 #ifdef CHIP_915 41 #if !defined(SLI_SI917) && !defined(SLI_SI915) 42 #define SLI_SI917 43 #endif 44 #endif 45 46 /*1. By default A10 ROM is enabled */ 47 /*2. To enable A11 ROM --> Add #define A11_ROM (this disables A10 ROM) */ 48 /*3. To enable OS --> Add SLI_SI91X_ENABLE_OS in preprocessor */ 49 /*4. To enable ROM Wireless --> Add #define ROM_WIRELESS */ 50 #define A11_ROM 51 52 #ifndef SLI_SI91X_MCU_MOV_ROM_API_TO_FLASH 53 #define ROMDRIVER_PRESENT 54 #endif 55 56 #if defined(SLI_SI917B0) || defined(SLI_SI915) 57 #define SI91X_SYSRTC_COUNT 2 58 #endif 59