sstconfig.h

来自「PwmVoice_AD SST25VF016BDrv」· C头文件 代码 · 共 97 行

H
97
字号
/****************************************Copyright (c)**************************************************
**                         Guangzhou ZHIYUAN electronics Co.,LTD.                               
**                                     
**                               http://www.embedtools.com
**
**--------------File Info-------------------------------------------------------------------------------
** File Name: config.h
** Last modified Date:  2004-09-17
** Last Version: 1.0
** Descriptions: User Configurable File
**
**------------------------------------------------------------------------------------------------------
** Created By: Chenmingji
** Created date:   2004-09-17
** Version: 1.0
** Descriptions: First version
**
**------------------------------------------------------------------------------------------------------
** Modified by:   LinEnqiang
** Modified date: 2007-05-15
** Version: 1.0
** Descriptions: Modified for NXP23xx
**
********************************************************************************************************/
#ifndef __CONFIG_H 
#define __CONFIG_H
#ifdef __cplusplus
extern "C" {
#endif


//这一段无需改动
//This segment should not be modified
#ifndef TRUE
#define TRUE  1
#endif

#ifndef FALSE
#define FALSE 0
#endif
  

#define  uint8  unsigned char                   /* 无符号8位整型变量  */
#define  int8   signed   char                   /* 有符号8位整型变量  */
#define  uint16 unsigned short                 /* 无符号16位整型变量 */
#define  int16  signed   short                 /* 有符号16位整型变量 */		
#define  uint32 unsigned long                  /* 无符号32位整型变量 */ 	
#define  int32  signed   long                  /* 有符号32位整型变量 */		 
#define  fp32   float                          /* 单精度浮点数(32位长度) */
#define  fp64   double                         /* 双精度浮点数(64位长度) */
#define GLOBAL	 extern	

/********************************/
/*      ARM的特殊代码           */
/*      ARM specital code       */
/********************************/
//这一段无需改动
//This segment should not be modify


/********************************/
/*     应用程序配置             */
/*Application Program Configurations*/
/********************************/
//以下根据需要改动
//This segment could be modified as needed.
#include    <stdio.h>
#include    <string.h>
#include    <ctype.h>
#include    <stdlib.h>
#include    <setjmp.h>

#include    "SST25VF016BDrv.h"

#include   "hw_memmap.h"
#include   "hw_types.h"
#include   "hw_gpio.h"
#include   "ssi.h"
#include   "gpio.h"
#include   "sysctl.h"
#include   "systick.h"

/********************************/
/*     本例程的配置             */
/*Configuration of the example */
/********************************/






#endif
/*********************************************************************************************************
**                            End Of File
********************************************************************************************************/

⌨️ 快捷键说明

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