conn_systemreset.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Copyright (c) 2014 Nordic Semiconductor. All Rights Reserved.
  2. *
  3. * The information contained herein is property of Nordic Semiconductor ASA.
  4. * Terms and conditions of usage are described in detail in NORDIC
  5. * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
  6. *
  7. * Licensees are granted free, non-transferable use of the information. NO
  8. * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
  9. * the file.
  10. *
  11. */
  12. #ifndef CONN_SYSTEMRESET_H__
  13. #define CONN_SYSTEMRESET_H__
  14. /**
  15. * @addtogroup ser_codecs Serialization codecs
  16. * @ingroup ble_sdk_lib_serialization
  17. */
  18. /**
  19. * @addtogroup ser_app_common_codecs Application common codecs
  20. * @ingroup ser_codecs
  21. */
  22. /**@file
  23. *
  24. * @defgroup conn_systemreset Connectivity chip reset command request encoder.
  25. * @{
  26. * @ingroup ser_app_common_codecs
  27. *
  28. * @brief Connectivity chip reset command request encoder.
  29. */
  30. /**@brief Function for performing the connectivity chip reset.
  31. *
  32. * @retval NRF_SUCCESS Encoding success.
  33. * @retval NRF_ERROR_INTERNAL Encoding failure. Transport error.
  34. */
  35. uint32_t conn_systemreset(void);
  36. /** @} */
  37. #endif // CONN_SYSTEMRESET_H__