includes.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. *********************************************************************************************************
  3. * EXAMPLE CODE
  4. *
  5. * (c) Copyright 2003-2013; 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. #ifndef __INCLUDES_H__
  14. #define __INCLUDES_H__
  15. /*
  16. *********************************************************************************************************
  17. * STANDARD LIBRARIES
  18. *********************************************************************************************************
  19. */
  20. #include <stdarg.h>
  21. #include <stdio.h>
  22. #include <stdlib.h>
  23. #include <math.h>
  24. /*
  25. *********************************************************************************************************
  26. * LIBRARIES
  27. *********************************************************************************************************
  28. */
  29. #include <cpu.h>
  30. #include <lib_def.h>
  31. #include <lib_ascii.h>
  32. #include <lib_math.h>
  33. #include <lib_mem.h>
  34. #include <lib_str.h>
  35. /*
  36. *********************************************************************************************************
  37. * APP / BSP
  38. *********************************************************************************************************
  39. */
  40. #include <bsp.h>
  41. /*
  42. *********************************************************************************************************
  43. * OS
  44. *********************************************************************************************************
  45. */
  46. #include <ucos_ii.h>
  47. #define TRUE 1
  48. #define FALSE 0
  49. #endif