support_common.h
上传用户:dongxin
上传日期:2022-06-22
资源大小:370k
文件大小:1k
源码类别:

uCOS

开发平台:

Others

  1. /*
  2. * File: support_common.h
  3.  * Purpose: File to be included by all project files
  4.  *
  5.  * Notes:
  6.  */
  7. #ifndef _SUPPORT_COMMON_H_
  8. #define _SUPPORT_COMMON_H_
  9. #define UART_SUPPORT  1 
  10. /* 
  11.  * Include the derivative header files 
  12.  */
  13. #include "MCF52233.h"
  14. /* 
  15.  * Include the derivative support files 
  16.  */
  17. #include "MCF52233_support.h"
  18. /* 
  19.  * Include the board specific header files 
  20.  */
  21. #include "M52233DEMO_board.h"
  22. /* 
  23.  * Include the generic ColdFire support files 
  24.  */
  25. #include "mcf5xxx.h"
  26. /* 
  27.  * Include the Freescale UART specific header file for printf/cout/scanf support 
  28.  */
  29. #include <ansi_parms.h>
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33. #include <UART.h>
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. /********************************************************************/
  38. #endif /* _SUPPORT_COMMON_H_ */