友善2440开发板开启串口输出调试信息

原创  友善2440开发板开启串口输出调试信息 收藏


2440开发板,WINCE6.0系统,系统启动时发现串口工具没有输出任何信息,Google一下,原来是友善把它屏蔽了。
解决方法:
1、修改Debug.c文件,增加#define BSP_DEBUG_UART0,如下所示

  1. //  Function: OEMInitDebugSerial  
  2. //  
  3. //  Initializes the debug serial port  
  4. //  
  5. #if defined(KITL_SERIAL_UART0)  
  6. #define BSP_DEBUG_UART0  
  7. #elif defined(KITL_SERIAL_UART1)  
  8. #define BSP_DEBUG_UART1  
  9. #endif  
  10. #define BSP_DEBUG_UART0 //add  
  11. #undef BSP_DEBUGPORT  
  12. #if defined(BSP_DEBUG_UART0) || defined(BSP_DEBUG_UART1)  
  13. #define BSP_DEBUGPORT  
  14. #endif  

2、修改platform.reg,屏蔽串口0相关配置代码

3、重新生成镜像,烧入即可。

 

 ----------------------------------------------------------

尊重他人劳动成果,转载请标明出处http://www.cnblogs.com/feishanm

 

 

posted @ 2010-07-20 22:54  mike_fei  阅读(1244)  评论(0编辑  收藏  举报