bootloader_settings.h 960 B

1234567891011121314151617181920212223242526272829303132333435
  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. /**@file
  13. *
  14. * @defgroup nrf_bootloader_settings Bootloader settings API.
  15. * @{
  16. *
  17. * @brief Bootloader settings module interface.
  18. */
  19. #ifndef BOOTLOADER_SETTINGS_H__
  20. #define BOOTLOADER_SETTINGS_H__
  21. #include <stdint.h>
  22. #include "bootloader_types.h"
  23. /**@brief Function for getting the bootloader settings.
  24. *
  25. * @param[out] pp_bootloader_settings Bootloader settings.
  26. */
  27. void bootloader_util_settings_get(const bootloader_settings_t ** pp_bootloader_settings);
  28. #endif // BOOTLOADER_SETTINGS_H__
  29. /**@} */