dvstest.h
上传用户:zbk8730
上传日期:2017-08-10
资源大小:12168k
文件大小:1k
源码类别:

uCOS

开发平台:

C/C++

  1. //===================================================================
  2. // File Name : Dvstest.c
  3. // Function  : S3C2440A 
  4. // Date      : Feb 02, 2004
  5. // Version   : 0.0
  6. // History
  7. //  0.00: Feb.xx.2004:DonGo: first draft version for DVS.
  8. //===================================================================
  9. #ifndef __DVSTEST_H__
  10. #define __DVSTEST_H__
  11. /**************** Main function *****************/
  12. void Dvs_Test(void);
  13. /**************** Sub function *****************/
  14. void Set_Lcd_Tft_16Bit_240320_Dvs(void);
  15. void __irq Lcd_Int_Frame_ForDvs(void);
  16. void __irq Timer0_intr(void);
  17. void Timer_Setting(void);
  18. void Led_Onoff(int Led_No, int On_Off);
  19. #define LED1 (1<<4)
  20. #define LED2 (1<<5)
  21. #define LED3 (1<<6)
  22. #define LED4 (1<<7)
  23. #define ON 1
  24. #define OFF 0
  25. #endif    //__DVSTEST_H__