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 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. * Implementation of EEPROM settings in SD Card
  24. */
  25. #if defined(ARDUINO_ARCH_STM32) && !defined(STM32GENERIC)
  26. #include "../../inc/MarlinConfig.h"
  27. #if ENABLED(SDCARD_EEPROM_EMULATION)
  28. #include "../shared/persistent_store_api.h"
  29. #ifndef E2END
  30. #define E2END 0xFFF // 4KB
  31. #endif
  32. #define HAL_EEPROM_SIZE int(E2END + 1)
  33. #define _ALIGN(x) __attribute__ ((aligned(x)))
  34. static char _ALIGN(4) HAL_eeprom_data[HAL_EEPROM_SIZE];
  35. #if ENABLED(SDSUPPORT)
  36. #include "../../sd/cardreader.h"
  37. #define EEPROM_FILENAME "eeprom.dat"
  38. bool PersistentStore::access_start() {
  39. if (!card.isMounted()) return false;
  40. SdFile file, root = card.getroot();
  41. if (!file.open(&root, EEPROM_FILENAME, O_RDONLY))
  42. return true;
  43. int bytes_read = file.read(HAL_eeprom_data, HAL_EEPROM_SIZE);
  44. if (bytes_read < 0) return false;
  45. for (; bytes_read < HAL_EEPROM_SIZE; bytes_read++)
  46. HAL_eeprom_data[bytes_read] = 0xFF;
  47. file.close();
  48. return true;
  49. }
  50. bool PersistentStore::access_finish() {
  51. if (!card.isMounted()) return false;
  52. SdFile file, root = card.getroot();
  53. int bytes_written = 0;
  54. if (file.open(&root, EEPROM_FILENAME, O_CREAT | O_WRITE | O_TRUNC)) {
  55. bytes_written = file.write(HAL_eeprom_data, HAL_EEPROM_SIZE);
  56. file.close();
  57. }
  58. return (bytes_written == HAL_EEPROM_SIZE);
  59. }
  60. #else // !SDSUPPORT
  61. #error "Please define an EEPROM, a SDCARD or disable EEPROM_SETTINGS."
  62. #endif // !SDSUPPORT
  63. bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc) {
  64. for (size_t i = 0; i < size; i++)
  65. HAL_eeprom_data[pos + i] = value[i];
  66. crc16(crc, value, size);
  67. pos += size;
  68. return false;
  69. }
  70. bool PersistentStore::read_data(int &pos, uint8_t* value, const size_t size, uint16_t *crc, const bool writing/*=true*/) {
  71. for (size_t i = 0; i < size; i++) {
  72. uint8_t c = HAL_eeprom_data[pos + i];
  73. if (writing) value[i] = c;
  74. crc16(crc, &c, 1);
  75. }
  76. pos += size;
  77. return false;
  78. }
  79. size_t PersistentStore::capacity() { return HAL_EEPROM_SIZE; }
  80. #endif // SDCARD_EEPROM_EMULATION
  81. #endif // STM32 && !STM32GENERIC