Src_Ctrl.h
上传用户:xmyjxjd
上传日期:2013-05-04
资源大小:1517k
文件大小:1k
开发平台:

C/C++

  1. #ifdef __SOURCECTRL__
  2. #if(SOURCE_AUTO_SCAN)
  3. bit bSourceScanEnable   = 0;    // 1 : Start the source auto scan function
  4.                                 // 0 : Disable the source auto scan function
  5. unsigned char   idata   ucNext_Source = MASTER_SOURCE;
  6. unsigned char   idata   ucSource_Times  = 0;
  7. #endif
  8. #else
  9. #if(SOURCE_AUTO_SCAN)
  10. extern bit bSourceScanEnable;    // 1 : Start the source auto scan function
  11.                                 // 0 : Disable the source auto scan function
  12. #endif
  13. extern bit Source_Control(void);
  14. extern void Change_Source(unsigned char source);
  15. #if(SOURCE_AUTO_SCAN)
  16. extern void Source_Auto_Scan();
  17. #endif
  18. #endif