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

📄 heads.h

📁 LM3S8962 通过SSI方式读取 AT45DB161D 程序
💻 H
字号:
/*  Luminary Cortex_M3 */
#ifndef __Heads_H 
#define __Heads_H

#ifdef __cplusplus
extern "C" {
#endif


#include<hw_pwm.h>
#include<hw_qei.h>
#include<hw_ssi.h>
#include<hw_adc.h>
#include<hw_can.h>
#include<hw_i2c.h>
#include<hw_usb.h>
#include<hw_comp.h>
#include<hw_gpio.h>
#include<hw_ints.h>
#include<hw_uart.h>
#include<hw_udma.h>
#include<hw_nvic.h>
#include<hw_flash.h>
#include<hw_timer.h>
#include<hw_types.h>
#include<hw_sysctl.h>
#include<hw_memmap.h>
#include<hw_watchdog.h>
#include<hw_ethernet.h>
#include<hw_hibernate.h>


#include<adc.h>
#include<usb.h>
#include<can.h>
#include<cpu.h>
#include<pwm.h>
#include<qei.h>
#include<i2c.h>
#include<rom.h>
#include<ssi.h>
#include<mpu.h>
#include<comp.h>
#include<gpio.h>
#include<uart.h>
#include<udma.h>
#include<flash.h>
#include<timer.h>
#include<sysctl.h>
#include<pin_map.h>
#include<rom_map.h>
#include<asmdefs.h>
#include<systick.h>
#include<watchdog.h>
#include<ethernet.h>
#include<hibernate.h>
#include<interrupt.h>

/*  IAR  */
#include<time.h>
#include<math.h>
#include<float.h>
#include<ctype.h>
#include<stdio.h>
#include<assert.h>
#include<limits.h>
#include<locale.h>
#include<setjmp.h>
#include<signal.h>
#include<stdarg.h>
#include<stddef.h>
#include<stdlib.h>
#include<string.h>


#ifndef TRUE
#define TRUE  1
#endif

#ifndef FALSE
#define FALSE 0
#endif

typedef  unsigned  char   uint8;      // unsigned 8-bits integer variable 	
typedef  signed    char   int8;       // signed 8-bits integer variable		
typedef  unsigned  short  uint16;     // unsigned 16-bits integer variable 	
typedef  signed    short  int16;      // signed 16-bits integer variable 	
typedef  unsigned  long   uint32;     // unsigned 32-bits integer variable 
typedef  signed    long   int32;      // signed 32-bits integer variable 		
typedef  float            fp32;       // floating point variable (32bits) 
typedef  double           fp64;       // floating point variable (64bits)

#endif

⌨️ 快捷键说明

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