includes.h
上传用户:ayququ
上传日期:2009-01-21
资源大小:490k
文件大小:1k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/OS-II
  4. *                                The Real-Time Kernel (by Jean J. Labrosse)
  5. *
  6. * WIN32 PORT & LINUX PORT
  7. *
  8. *                          (c) Copyright 2004, Werner.Zimmermann@fht-esslingen.de
  9. *                                           All Rights Reserved
  10. *
  11. * File : INCLUDES.H
  12. * By   : Werner Zimmermann
  13. *********************************************************************************************************
  14. */
  15. #include <stdlib.h>
  16. #include <stdio.h>
  17. #include <limits.h>
  18. #include <math.h>
  19. #include <time.h>
  20. #ifndef __GNUC__
  21. #include <conio.h>
  22. #endif
  23. #ifdef __WIN32__
  24. #include <windows.h>
  25. #endif
  26. #ifdef __GNUC__
  27. #include <unistd.h>
  28. #include <termios.h>
  29. #include <sys/time.h>
  30. #endif
  31. #include "os_cpu.h"
  32. #include "os_cfg.h"
  33. #include "ucos_ii.h"
  34. #include "pc.h"