aic_fota.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /**************************************************************************/
  2. /* */
  3. /* Copyright 2023 by AICXTEK TECHNOLOGIES CO.,LTD. All rights reserved. */
  4. /* */
  5. /**************************************************************************/
  6. /**
  7. * DESCRIPTION
  8. *
  9. * This file defines aic fota module apis.
  10. */
  11. #ifndef AIC_FOTA_H
  12. #define AIC_FOTA_H
  13. typedef enum {
  14. AIC_FOTA_SUCC = 0,
  15. AIC_FOTA_STATE_ERR,
  16. AIC_FOTA_SIZE_ERR,
  17. AIC_FOTA_NO_MEM
  18. } aic_fota_err_t;
  19. typedef enum {
  20. AIC_FOTA_UPDATE_COMPLETE = 0,
  21. AIC_FOTA_PAC_TRNS_TIMEOUT,
  22. AIC_FOTA_PAC_VER_NOT_MATCH,
  23. AIC_FOTA_PAC_CHECK_FAIL,
  24. AIC_FOTA_UPDATE_TIMEOUT,
  25. AIC_FOTA_UPDATE_STATE_ERR,
  26. AIC_FOTA_UPDATE_INIT
  27. } aic_fota_update_result_t;
  28. /**
  29. * aic_fota_start - start the fota update action.
  30. *
  31. * @pac_size: the total size of the fota update package.
  32. *
  33. * Return: 0 means success, otherwise means error.
  34. */
  35. int aic_fota_start(u32 pac_size);
  36. /**
  37. * aic_fota_start_update - start the fota update action.
  38. *
  39. * @data: the one of the diff package data buffer pointer.
  40. * @size: the size of the data.
  41. *
  42. * Return: 0 means success, otherwise means error.
  43. */
  44. int aic_fota_trans_data(void *data, u32 size);
  45. /**
  46. * aic_fota_wait_update_result - wait the fota update result.
  47. *
  48. * @timeout: the max time of wait fota update result, the unit is second.
  49. *
  50. * Return: return the update result.
  51. */
  52. aic_fota_update_result_t aic_fota_wait_update_result(int timout);
  53. /**
  54. * aic_fota_stop - top the fota update action.
  55. *
  56. * will stop the fota update and release all the resource of fota update.
  57. */
  58. void aic_fota_stop(void);
  59. /**
  60. * aic_fota_get_aic_remote_ver_num - get the remote aic version number.
  61. *
  62. * return:
  63. * >= 0, get a version number of the remote aic software.
  64. * < 0, can't get the version number of the remote aic software,
  65. * may has some error.
  66. */
  67. int aic_fota_get_aic_remote_ver_num(void);
  68. /**
  69. * aic_fota_get_aic_local_ver_num - get the local aic version number.
  70. *
  71. * Attention: Can used it is to check if the aic software need update.
  72. * if the local version number is bigger than the remote version number,
  73. * It means that need to update the aic version.
  74. */
  75. int aic_fota_get_aic_local_ver_num(void);
  76. #endif /* AIC_FOTA_H */