⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 csl_memprothwsetupraw.c

📁 TI达芬奇dm644x各硬件模块测试代码
💻 C
字号:
/*  ============================================================================
 *   Copyright (c) Texas Instruments Inc 2002, 2003, 2004, 2005                 
 *                                                                              
 *   Use of this software is controlled by the terms and conditions found in the
 *   license agreement under which this software has been supplied.             
 *   ===========================================================================
 */ 
/** @file csl_memprotHwSetupRaw.c
 *
 *  @path $(CSLPATH)\\memprot\\src
 *
 *  @brief    File for functional layer of CSL API @a CSL_memprotHwSetupRaw()
 *
 *  Description
 *    - The @a CSL_memprotHwSetupRaw() function definition & it's associated
 *      functions
 *
 *  Modification 1
 *    - Modified on: 7/16/2004
 *    - Reason: created the sources
 *
 *  @author Ruchika Kharwar.
 */

#include <csl_memprot.h>

#pragma CODE_SECTION (CSL_memprotHwSetupRaw, ".text:csl_section:memprot");

/** @brief Configures the Memory protection using the register-values passed in
 *  through the config structure. For this module this API is a dummy.
 */

CSL_Status  CSL_memprotHwSetupRaw(
    /** Pointer to the object that holds reference to the
     *  instance of memory protection unit.
     */
    CSL_MemprotHandle                       hMemprot,
    /** Pointer to setup structure which contains the
     *  information to program the memory protection unit to a useful state
     */
    CSL_MemprotConfig                       *config
)
{
    return CSL_SOK;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -