You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

BootloaderAPI.c 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. LUFA Library
  3. Copyright (C) Dean Camera, 2014.
  4. dean [at] fourwalledcubicle [dot] com
  5. www.lufa-lib.org
  6. */
  7. /*
  8. Copyright 2014 Dean Camera (dean [at] fourwalledcubicle [dot] com)
  9. Permission to use, copy, modify, distribute, and sell this
  10. software and its documentation for any purpose is hereby granted
  11. without fee, provided that the above copyright notice appear in
  12. all copies and that both that the copyright notice and this
  13. permission notice and warranty disclaimer appear in supporting
  14. documentation, and that the name of the author not be used in
  15. advertising or publicity pertaining to distribution of the
  16. software without specific, written prior permission.
  17. The author disclaims all warranties with regard to this
  18. software, including all implied warranties of merchantability
  19. and fitness. In no event shall the author be liable for any
  20. special, indirect or consequential damages or any damages
  21. whatsoever resulting from loss of use, data or profits, whether
  22. in an action of contract, negligence or other tortious action,
  23. arising out of or in connection with the use or performance of
  24. this software.
  25. */
  26. /** \file
  27. *
  28. * Bootloader user application API functions.
  29. */
  30. #include "BootloaderAPI.h"
  31. void BootloaderAPI_ErasePage(const uint32_t Address)
  32. {
  33. boot_page_erase_safe(Address);
  34. boot_spm_busy_wait();
  35. boot_rww_enable();
  36. }
  37. void BootloaderAPI_WritePage(const uint32_t Address)
  38. {
  39. boot_page_write_safe(Address);
  40. boot_spm_busy_wait();
  41. boot_rww_enable();
  42. }
  43. void BootloaderAPI_FillWord(const uint32_t Address, const uint16_t Word)
  44. {
  45. boot_page_fill_safe(Address, Word);
  46. }
  47. uint8_t BootloaderAPI_ReadSignature(const uint16_t Address)
  48. {
  49. return boot_signature_byte_get(Address);
  50. }
  51. uint8_t BootloaderAPI_ReadFuse(const uint16_t Address)
  52. {
  53. return boot_lock_fuse_bits_get(Address);
  54. }
  55. uint8_t BootloaderAPI_ReadLock(void)
  56. {
  57. return boot_lock_fuse_bits_get(GET_LOCK_BITS);
  58. }
  59. void BootloaderAPI_WriteLock(const uint8_t LockBits)
  60. {
  61. boot_lock_bits_set_safe(LockBits);
  62. }