12345678910111213141516171819202122232425262728293031323334353637 |
- /******************************************************************************/
- /**
- *
- * @file MHL_application.h
- *
- * @brief This file contains the APIs prototype declaration of MHL driver
- *
- * @note Copyright (c) 2013 S2-Tek Co., LTD. \n
- * All rights reserved.
- *
- * @author
- *
- ******************************************************************************/
- #ifndef __MHL_APPLICATION_H__
- #define __MHL_APPLICATION_H__
- /*******************************************************************************
- * Header include
- ******************************************************************************/
- /*******************************************************************************
- * Constant
- ******************************************************************************/
- //------------------------------------------------------------------------------
- // Function: main
- // Description: Main entry point for MHL driver module
- // Parameters: none
- // Returns: none
- //------------------------------------------------------------------------------
- void MHL_CBUS_main(void* arg);
- void MHL_CBUS_Initial(void);
- void MHL_Poling_TIMER(void* dummy);
- void MHL_CBUS_Work_Enable(BOOL fEn);
- #endif /* __MHL_APPLICATION_H__ */
|