includes.h
上传用户:yj_qqy
上传日期:2017-01-28
资源大小:2911k
文件大小:2k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                              EXAMPLE CODE
  4. *
  5. *                          (c) Copyright 2003-2006; Micrium, Inc.; Weston, FL
  6. *
  7. *               All rights reserved.  Protected by international copyright laws.
  8. *               Knowledge of the source code may NOT be used to develop a similar product.
  9. *               Please help us continue to provide the Embedded community with the finest
  10. *               software available.  Your honesty is greatly appreciated.
  11. *********************************************************************************************************
  12. */
  13. /*
  14. *********************************************************************************************************
  15. *
  16. *                                           MASTER INCLUDES
  17. *
  18. *                                     ST Microelectronics STM32
  19. *                                              with the
  20. *                                   STM3210B-EVAL Evaluation Board
  21. *
  22. * Filename      : includes.h
  23. * Version       : V1.10
  24. * Programmer(s) : BAN
  25. *********************************************************************************************************
  26. */
  27. #ifndef  __INCLUDES_H__
  28. #define  __INCLUDES_H__
  29. #include  <stdio.h>
  30. #include  <string.h>
  31. #include  <ctype.h>
  32. #include  <stdlib.h>
  33. #include  <stdarg.h>
  34. #include  <math.h>
  35. #include  <ucos_ii.h>
  36. #include  <cpu.h>
  37. #include  <lib_def.h>
  38. #include  <lib_mem.h>
  39. #include  <lib_str.h>
  40. #if (OS_VIEW_MODULE == DEF_ENABLED)
  41. #include    <os_viewc.h>
  42. #include    <os_view.h>
  43. #endif
  44. #if (GPS_MODULE == DEF_ENABLED)
  45. #include    <gps_os.h>
  46. #include    <gps.h>
  47. #endif
  48. #include  <stm32f10x_conf.h>
  49. #include  <stm32f10x_lib.h>
  50. #include  <app_cfg.h>
  51. #include  <bsp.h>
  52. #include <sddriver.h>
  53. #include <fs_api.h>
  54. #endif