at_cmd_cissdk_mipl.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* Copyright (C) 2016 RDA Technologies Limited and/or its affiliates("RDA").
  2. * All rights reserved.
  3. *
  4. * This software is supplied "AS IS" without any warranties.
  5. * RDA assumes no responsibility or liability for the use of the software,
  6. * conveys no license or title under any patent, copyright, or mask work
  7. * right to the product. RDA reserves the right to make changes in the
  8. * software without notification. RDA also make no representation or
  9. * warranty that such application will be suitable for the specified use
  10. * without further testing or modification.
  11. */
  12. #ifdef CONFIG_AT_CISSDK_MIPL_SUPPORT
  13. #ifndef __AT_CMD_MIPL_H__
  14. #define __AT_CMD_MIPL_H__
  15. #include "ats_config.h"
  16. #include "at_engine.h"
  17. #include "at_command.h"
  18. void AT_CmdFunc_MIPLCREATE(atCommand_t *pParam);
  19. void AT_CmdFunc_MIPLDELETE(atCommand_t *pParam);
  20. void AT_CmdFunc_MIPLOPEN(atCommand_t *pParam);
  21. void AT_CmdFunc_MIPLCLOSE(atCommand_t *pParam);
  22. void AT_CmdFunc_MIPLADDOBJ(atCommand_t *pParam);
  23. void AT_CmdFunc_MIPLDELOBJ(atCommand_t *pParam);
  24. void AT_CmdFunc_MIPLNOTIFY(atCommand_t *pParam);
  25. void AT_CmdFunc_MIPLREADRSP(atCommand_t *pParam);
  26. void AT_CmdFunc_MIPLWRITERSP(atCommand_t *pParam);
  27. void AT_CmdFunc_MIPLEXECUTERSP(atCommand_t *pParam);
  28. void AT_CmdFunc_MIPLOBSERVERSP(atCommand_t *pParam);
  29. void AT_CmdFunc_MIPLDISCOVERRSP(atCommand_t *pParam);
  30. void AT_CmdFunc_MIPLPARAMETERRSP(atCommand_t *pParam);
  31. void AT_CmdFunc_MIPLUPDATE(atCommand_t *pParam);
  32. void AT_CmdFunc_MIPLVER(atCommand_t *pParam);
  33. void AT_CmdFunc_MIPLCLEARSTATE(atCommand_t *pParam);
  34. //void AT_CmdFunc_MIPLNMI(atCommand_t *pParam);
  35. #endif
  36. #endif