mhl_application.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /******************************************************************************/
  2. /**
  3. *
  4. * @file MHL_application.h
  5. *
  6. * @brief This file contains the APIs prototype declaration of MHL driver
  7. *
  8. * @note Copyright (c) 2013 S2-Tek Co., LTD. \n
  9. * All rights reserved.
  10. *
  11. * @author
  12. *
  13. ******************************************************************************/
  14. #ifndef __MHL_APPLICATION_H__
  15. #define __MHL_APPLICATION_H__
  16. /*******************************************************************************
  17. * Header include
  18. ******************************************************************************/
  19. /*******************************************************************************
  20. * Constant
  21. ******************************************************************************/
  22. //------------------------------------------------------------------------------
  23. // Function: main
  24. // Description: Main entry point for MHL driver module
  25. // Parameters: none
  26. // Returns: none
  27. //------------------------------------------------------------------------------
  28. void MHL_CBUS_main(void* arg);
  29. void MHL_CBUS_Initial(void);
  30. void MHL_Poling_TIMER(void* dummy);
  31. void MHL_CBUS_Work_Enable(BOOL fEn);
  32. #endif /* __MHL_APPLICATION_H__ */