My Marlin configs for Fabrikator Mini and CTC i3 Pro B
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.

persistent_store_sdcard.cpp 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * HAL for stm32duino.com based on Libmaple and compatible (STM32F1)
  24. * Implementation of EEPROM settings in SD Card
  25. */
  26. #ifdef __STM32F1__
  27. #include "../../inc/MarlinConfig.h"
  28. #if ENABLED(SDCARD_EEPROM_EMULATION)
  29. #include "../shared/persistent_store_api.h"
  30. #ifndef E2END
  31. #define E2END 0xFFF // 4KB
  32. #endif
  33. #define HAL_EEPROM_SIZE (E2END + 1)
  34. #define _ALIGN(x) __attribute__ ((aligned(x))) // SDIO uint32_t* compat.
  35. static char _ALIGN(4) HAL_eeprom_data[HAL_EEPROM_SIZE];
  36. #if ENABLED(SDSUPPORT)
  37. #include "../../sd/cardreader.h"
  38. #define EEPROM_FILENAME "eeprom.dat"
  39. bool PersistentStore::access_start() {
  40. if (!card.isMounted()) return false;
  41. SdFile file, root = card.getroot();
  42. if (!file.open(&root, EEPROM_FILENAME, O_RDONLY))
  43. return true; // false aborts the save
  44. int bytes_read = file.read(HAL_eeprom_data, HAL_EEPROM_SIZE);
  45. if (bytes_read < 0) return false;
  46. for (; bytes_read < HAL_EEPROM_SIZE; bytes_read++)
  47. HAL_eeprom_data[bytes_read] = 0xFF;
  48. file.close();
  49. return true;
  50. }
  51. bool PersistentStore::access_finish() {
  52. if (!card.isMounted()) return false;
  53. SdFile file, root = card.getroot();
  54. int bytes_written = 0;
  55. if (file.open(&root, EEPROM_FILENAME, O_CREAT | O_WRITE | O_TRUNC)) {
  56. bytes_written = file.write(HAL_eeprom_data, HAL_EEPROM_SIZE);
  57. file.close();
  58. }
  59. return (bytes_written == HAL_EEPROM_SIZE);
  60. }
  61. #else // !SDSUPPORT
  62. #error "Please define SPI_EEPROM (in Configuration.h) or disable EEPROM_SETTINGS."
  63. #endif // !SDSUPPORT
  64. bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
  65. for (size_t i = 0; i < size; i++)
  66. HAL_eeprom_data[pos + i] = value[i];
  67. crc16(crc, value, size);
  68. pos += size;
  69. return false;
  70. }
  71. bool PersistentStore::read_data(int &pos, uint8_t* value, const size_t size, uint16_t *crc, const bool writing/*=true*/) {
  72. for (size_t i = 0; i < size; i++) {
  73. uint8_t c = HAL_eeprom_data[pos + i];
  74. if (writing) value[i] = c;
  75. crc16(crc, &c, 1);
  76. }
  77. pos += size;
  78. return false;
  79. }
  80. size_t PersistentStore::capacity() { return HAL_EEPROM_SIZE; }
  81. #endif // SDCARD_EEPROM_EMULATION
  82. #endif // __STM32F1__