config.h
上传用户:pudewen666
上传日期:2007-06-08
资源大小:75k
文件大小:4k
源码类别:

微处理器开发

开发平台:

Windows_Unix

  1. /****************************************Copyright (c)**************************************************
  2. **                               Guangzou ZLG-MCU Development Co.,LTD.
  3. **                                      graduate school
  4. **                                 http://www.zlgmcu.com
  5. **
  6. **--------------File Info-------------------------------------------------------------------------------
  7. ** File Name: config.h
  8. ** Last modified Date:  2004-09-17
  9. ** Last Version: 1.0
  10. ** Descriptions: User Configurable File
  11. **
  12. **------------------------------------------------------------------------------------------------------
  13. ** Created By: Chenmingji
  14. ** Created date:   2004-09-17
  15. ** Version: 1.0
  16. ** Descriptions: First version
  17. **
  18. **------------------------------------------------------------------------------------------------------
  19. ** Modified by:
  20. ** Modified date:
  21. ** Version:
  22. ** Descriptions:
  23. **
  24. ********************************************************************************************************/
  25. #ifndef __CONFIG_H 
  26. #define __CONFIG_H
  27. //This segment should not be modified
  28. #ifndef TRUE
  29. #define TRUE  1
  30. #endif
  31. #ifndef FALSE
  32. #define FALSE 0
  33. #endif
  34. typedef unsigned char  uint8;                   /* defined for unsigned 8-bits integer variable  无符号8位整型变量  */
  35. typedef signed   char  int8;                    /* defined for signed 8-bits integer variable 有符号8位整型变量  */
  36. typedef unsigned short uint16;                  /* defined for unsigned 16-bits integer variable  无符号16位整型变量 */
  37. typedef signed   short int16;                   /* defined for signed 16-bits integer variable  有符号16位整型变量 */
  38. typedef unsigned int   uint32;                  /* defined for unsigned 32-bits integer variable  无符号32位整型变量 */
  39. typedef signed   int   int32;                   /* defined for signed 32-bits integer variable  有符号32位整型变量 */
  40. typedef float          fp32;                    /* single precision floating point variable (32bits) 单精度浮点数(32位长度) */
  41. typedef double         fp64;                    /* double precision floating point variable (64bits) 双精度浮点数(64位长度) */
  42. /********************************/
  43. /*      ARM specital code      */
  44. /*      ARM的特殊代码           */
  45. /********************************/
  46. //This segment should not be modify
  47. //这一段无需改动
  48. #include    "LPC2294.h"
  49. /********************************/
  50. /*Application Program Configurations*/
  51. /*     应用程序配置             */
  52. /********************************/
  53. //This segment could be modified as needed.
  54. //以下根据需要改动
  55. /********************************/
  56. /*Configuration of the example */
  57. /*     本例子的配置             */
  58. /********************************/
  59. /* System configuration .Fosc、Fcclk、Fcco、Fpclk must be defined */
  60. /* 系统设置, Fosc、Fcclk、Fcco、Fpclk必须定义*/
  61. #define Fosc            11059200                    //Crystal frequence,10MHz~25MHz,should be the same as actual status. 
  62.     //应当与实际一至晶振频率,10MHz~25MHz,应当与实际一至
  63. #define Fcclk           (Fosc * 4)                  //System frequence,should be (1~32)multiples of Fosc,and should be equal or less  than 60MHz. 
  64.     //系统频率,必须为Fosc的整数倍(1~32),且<=60MHZ
  65. #define Fcco            (Fcclk * 4)                 //CCO frequence,should be 2、4、8、16 multiples of Fcclk, ranged from 156MHz to 320MHz. 
  66.     //CCO频率,必须为Fcclk的2、4、8、16倍,范围为156MHz~320MHz
  67. #define Fpclk           (Fcclk / 4) * 4             //VPB clock frequence , must be 1、2、4 multiples of (Fcclk / 4).
  68.     //VPB时钟频率,只能为(Fcclk / 4)的1、2、4倍
  69. #include    "target.h"              //This line may not be deleted 这一句不能删除
  70. #endif
  71. /*********************************************************************************************************
  72. **                            End Of File
  73. ********************************************************************************************************/