hawkbit.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Copyright (c) 2020 Linumiz
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @brief Hawkbit Firmware Over-the-Air for Zephyr Project.
  8. * @defgroup hawkbit Hawkbit Firmware Over-the-Air
  9. * @ingroup lib
  10. * @{
  11. */
  12. #ifndef ZEPHYR_INCLUDE_MGMT_HAWKBIT_H_
  13. #define ZEPHYR_INCLUDE_MGMT_HAWKBIT_H_
  14. #define HAWKBIT_JSON_URL "/default/controller/v1"
  15. /**
  16. * @brief Response message from Hawkbit.
  17. *
  18. * @details These messages are used to inform the server and the
  19. * user about the process status of the Hawkbit and also
  20. * used to standardize the errors that may occur.
  21. *
  22. */
  23. enum hawkbit_response {
  24. HAWKBIT_NETWORKING_ERROR,
  25. HAWKBIT_UNCONFIRMED_IMAGE,
  26. HAWKBIT_METADATA_ERROR,
  27. HAWKBIT_DOWNLOAD_ERROR,
  28. HAWKBIT_OK,
  29. HAWKBIT_UPDATE_INSTALLED,
  30. HAWKBIT_NO_UPDATE,
  31. HAWKBIT_CANCEL_UPDATE,
  32. HAWKBIT_PROBE_IN_PROGRESS,
  33. };
  34. /**
  35. * @brief Init the flash partition
  36. *
  37. * @return 0 on success, negative on error.
  38. */
  39. int hawkbit_init(void);
  40. /**
  41. * @brief Runs Hawkbit probe and Hawkbit update automatically
  42. *
  43. * @details The hawkbit_autohandler handles the whole process
  44. * in pre-determined time intervals.
  45. */
  46. void hawkbit_autohandler(void);
  47. /**
  48. * @brief The Hawkbit probe verify if there is some update to be performed.
  49. *
  50. * @return HAWKBIT_UPDATE_INSTALLED has an update available.
  51. * @return HAWKBIT_NO_UPDATE no update available.
  52. * @return HAWKBIT_NETWORKING_ERROR fail to connect to the Hawkbit server.
  53. * @return HAWKBIT_METADATA_ERROR fail to parse or to encode the metadata.
  54. * @return HAWKBIT_OK if success.
  55. * @return HAWKBIT_DOWNLOAD_ERROR faile while downloading the update package.
  56. */
  57. enum hawkbit_response hawkbit_probe(void);
  58. /**
  59. * @}
  60. */
  61. #endif /* _HAWKBIT_H_ */