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

📄 omap30_system_init_l3.c

📁 有关于USB的一些主机端驱动
💻 C
字号:
//-------------------------------------------------------------------------------
//          TEXAS INSTRUMENTS INCORPORATED PROPRIETARY INFORMATION  
//   Property of Texas Instruments
//   For Unrestricted Internal Use Only
//   Unauthorized reprofuction and/or distribution is strictly prohibited.
//   This product is protected under copyright law and trade secret law
//   as an unpublished work
//   Created 2000,  (C) Copyright 2000 Texas Instruments. All rights reserved
//
//-------------------------------------------------------------------------------

#include "omap30_l3.h"

//-------------------------------------------------------------------------------
//
//  GLOBAL DEFINITIONS
//
//-------------------------------------------------------------------------------

//-------------------------------------------------------------------------------
//
//  FUNCTIONS
//
//-------------------------------------------------------------------------------

//-------------------------------------------------------------------------------
// NAME        : BOOT_SystemInit 
// DESCRIPTION : Gather all standard initialization 
// PARAMETERS  : None
// RETURN VALUE: None 
// LIMITATIONS : None                                  
//-------------------------------------------------------------------------------
void BOOT_SystemInit ( void )
{
  //  Initialize the Interrupt Vector Table                    
  // Disable maskable interrupts
  DSPINT_DisableGlobalIT();
  
  // Initialize the Interrupt Vector Table
  InitIntVectorTable(); //this function is located in the main of the program
}
  

⌨️ 快捷键说明

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