/***************************************************************************//** * @file * @brief Header file for module functions. This should not be released. ******************************************************************************* * # License * Copyright 2020 Silicon Laboratories Inc. www.silabs.com ******************************************************************************* * * The licensor of this software is Silicon Laboratories Inc. Your use of this * software is governed by the terms of Silicon Labs Master Software License * Agreement (MSLA) available at * www.silabs.com/about-us/legal/master-software-license-agreement. This * software is distributed to you in Source Code format and is governed by the * sections of the MSLA applicable to Source Code. * ******************************************************************************/ #ifndef _RAIL_MODULE_H_ #define _RAIL_MODULE_H_ #include /** * Call to unlock RAIL on modules by providing RAIL_MODULE_UNLOCK_KEY. This is a * no-op when not using RAIL on a module. * * @param[in] secretKey The key provided to unlock RAIL for modules. */ void RAIL_UnlockModule(uint32_t unlockKey); /** "Secret" Key used to unlock RAIL for use on modules. Chosen randomly */ #define RAIL_MODULE_UNLOCK_KEY 0x31E9A79B #endif // __RAIL_MODULE_H_