hv_app_DdcciOTA.h 994 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * @file hv_app_DdcciAT.h
  3. * @brief Header file of ddcci AT(Auto Test Tool).
  4. *
  5. * @verbatim
  6. * ==============================================================================
  7. * ##### How to use #####
  8. * ==============================================================================
  9. * (+) Use
  10. *
  11. * @author HiView SoC Software Team
  12. * @version 1.0.0
  13. * @date 2023-12-20
  14. */
  15. #ifndef _HV_APP_DDCCI_OTA_H
  16. #define _HV_APP_DDCCI_OTA_H
  17. #include "hv_comm_DataType.h"
  18. #include "hv_vos_Comm.h"
  19. #include "hv_comm_Define.h"
  20. /**
  21. * @brief The main handler of OTA.
  22. * @param[in] ucSource Indicates which source the message came from.
  23. * @param[in] pucData Pointer to the commging message data.
  24. * @param[in] ucLen Indicates the length of message.
  25. * @return None.
  26. */
  27. VOID Hv_App_Ddcci_ProcessOTA(UCHAR8 ucSource, UCHAR8 *pucData, UCHAR8 ucLen);
  28. /**
  29. * @brief Get mccs ota run flag.
  30. * @return HV_TRUE:OTA is running.
  31. */
  32. BOOL Hv_App_Ddcci_GetOtaRunFlag(VOID);
  33. #endif