Keyboard firmwares for Atmel AVR and Cortex-M
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

DataflashManager.h 3.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. * Header file for DataflashManager.c.
  29. */
  30. #ifndef _DATAFLASH_MANAGER_H_
  31. #define _DATAFLASH_MANAGER_H_
  32. /* Includes: */
  33. #include <avr/io.h>
  34. #include "../TempDataLogger.h"
  35. #include "../Descriptors.h"
  36. #include "Config/AppConfig.h"
  37. #include <LUFA/Common/Common.h>
  38. #include <LUFA/Drivers/USB/USB.h>
  39. #include <LUFA/Drivers/Board/Dataflash.h>
  40. /* Preprocessor Checks: */
  41. #if (DATAFLASH_PAGE_SIZE % 16)
  42. #error Dataflash page size must be a multiple of 16 bytes.
  43. #endif
  44. /* Defines: */
  45. /** Total number of bytes of the storage medium, comprised of one or more Dataflash ICs. */
  46. #define VIRTUAL_MEMORY_BYTES ((uint32_t)DATAFLASH_PAGES * DATAFLASH_PAGE_SIZE * DATAFLASH_TOTALCHIPS)
  47. /** Block size of the device. This is kept at 512 to remain compatible with the OS despite the underlying
  48. * storage media (Dataflash) using a different native block size. Do not change this value.
  49. */
  50. #define VIRTUAL_MEMORY_BLOCK_SIZE 512
  51. /** Total number of blocks of the virtual memory for reporting to the host as the device's total capacity. Do not
  52. * change this value; change VIRTUAL_MEMORY_BYTES instead to alter the media size.
  53. */
  54. #define VIRTUAL_MEMORY_BLOCKS (VIRTUAL_MEMORY_BYTES / VIRTUAL_MEMORY_BLOCK_SIZE)
  55. /* Function Prototypes: */
  56. void DataflashManager_WriteBlocks(USB_ClassInfo_MS_Device_t* const MSInterfaceInfo,
  57. const uint32_t BlockAddress,
  58. uint16_t TotalBlocks);
  59. void DataflashManager_ReadBlocks(USB_ClassInfo_MS_Device_t* const MSInterfaceInfo,
  60. const uint32_t BlockAddress,
  61. uint16_t TotalBlocks);
  62. void DataflashManager_WriteBlocks_RAM(const uint32_t BlockAddress,
  63. uint16_t TotalBlocks,
  64. const uint8_t* BufferPtr) ATTR_NON_NULL_PTR_ARG(3);
  65. void DataflashManager_ReadBlocks_RAM(const uint32_t BlockAddress,
  66. uint16_t TotalBlocks,
  67. uint8_t* BufferPtr) ATTR_NON_NULL_PTR_ARG(3);
  68. void DataflashManager_ResetDataflashProtections(void);
  69. bool DataflashManager_CheckDataflashOperation(void);
  70. #endif