My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

SdFatConfig.h 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. #pragma once
  23. /**
  24. * SdFatConfig.h
  25. * Arduino SdFat Library
  26. * Copyright (c) 2009 by William Greiman
  27. *
  28. * This file is part of the Arduino Sd2Card Library
  29. */
  30. #include "../inc/MarlinConfig.h"
  31. /**
  32. * To use multiple SD cards set USE_MULTIPLE_CARDS nonzero.
  33. *
  34. * Using multiple cards costs 400 - 500 bytes of flash.
  35. *
  36. * Each card requires about 550 bytes of SRAM so use of a Mega is recommended.
  37. */
  38. #define USE_MULTIPLE_CARDS 0
  39. /**
  40. * Call flush for endl if ENDL_CALLS_FLUSH is nonzero
  41. *
  42. * The standard for iostreams is to call flush. This is very costly for
  43. * SdFat. Each call to flush causes 2048 bytes of I/O to the SD.
  44. *
  45. * SdFat has a single 512 byte buffer for SD I/O so it must write the current
  46. * data block to the SD, read the directory block from the SD, update the
  47. * directory entry, write the directory block to the SD and read the data
  48. * block back into the buffer.
  49. *
  50. * The SD flash memory controller is not designed for this many rewrites
  51. * so performance may be reduced by more than a factor of 100.
  52. *
  53. * If ENDL_CALLS_FLUSH is zero, you must call flush and/or close to force
  54. * all data to be written to the SD.
  55. */
  56. #define ENDL_CALLS_FLUSH 0
  57. /**
  58. * Allow FAT12 volumes if FAT12_SUPPORT is nonzero.
  59. * FAT12 has not been well tested.
  60. */
  61. #define FAT12_SUPPORT 0
  62. /**
  63. * SPI init rate for SD initialization commands. Must be 5 (F_CPU/64)
  64. * or 6 (F_CPU/128).
  65. */
  66. #define SPI_SD_INIT_RATE 5
  67. /**
  68. * Set the SS pin high for hardware SPI. If SS is chip select for another SPI
  69. * device this will disable that device during the SD init phase.
  70. */
  71. #define SET_SPI_SS_HIGH 1
  72. /**
  73. * Define MEGA_SOFT_SPI nonzero to use software SPI on Mega Arduinos.
  74. * Pins used are SS 10, MOSI 11, MISO 12, and SCK 13.
  75. *
  76. * MEGA_SOFT_SPI allows an unmodified Adafruit GPS Shield to be used
  77. * on Mega Arduinos. Software SPI works well with GPS Shield V1.1
  78. * but many SD cards will fail with GPS Shield V1.0.
  79. */
  80. #define MEGA_SOFT_SPI 0
  81. // Set USE_SOFTWARE_SPI nonzero to ALWAYS use Software SPI.
  82. #define USE_SOFTWARE_SPI 0
  83. /**
  84. * The __cxa_pure_virtual function is an error handler that is invoked when
  85. * a pure virtual function is called.
  86. */
  87. #define USE_CXA_PURE_VIRTUAL 1
  88. /**
  89. * Defines for 8.3 and long (vfat) filenames
  90. */
  91. #define FILENAME_LENGTH 13 // Number of UTF-16 characters per entry
  92. // Total bytes needed to store a single long filename
  93. #define LONG_FILENAME_LENGTH (FILENAME_LENGTH * MAX_VFAT_ENTRIES + 1)