at_cmd_newftp.h 1.1 KB

1234567891011121314151617181920212223242526272829
  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_NEWFTP_SUPPORT
  13. #ifndef __AT_NEWFTP_H__
  14. #define __AT_NEWFTP_H__
  15. void AT_FTP_CmdFunc_SETCRT(atCommand_t *pParam);
  16. void AT_FTP_CmdFunc_SETMODE(atCommand_t *pParam);
  17. void AT_FTP_CmdFunc_OPEN(atCommand_t *pParam);
  18. void AT_FTP_CmdFunc_CLOSE(atCommand_t *pParam);
  19. void AT_FTP_CmdFunc_SIZE(atCommand_t *pParam);
  20. void AT_FTP_CmdFunc_GETSET(atCommand_t *pParam);
  21. void AT_FTP_CmdFunc_GET(atCommand_t *pParam);
  22. void AT_FTP_CmdFunc_PUTSET(atCommand_t *pParam);
  23. void AT_FTP_CmdFunc_PUT(atCommand_t *pParam);
  24. #endif
  25. #endif