No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

35 líneas
1.3KB

  1. The best source of recent information is the Arduino forum
  2. http://arduino.cc/forum/
  3. Also search the Adafruit forum
  4. http://forums.adafruit.com/
  5. If you are using a Teensy try
  6. http://forum.pjrc.com/forum.php
  7. Try running the SdInfo sketch in the SdFat/examples folder to get
  8. more information.
  9. The most common problems are:
  10. --------------------------------------------------------------------------------
  11. Wiring errors with card.init() failure and errorCode == 1. This means the
  12. first command, CMD0 - SPI init, failed. SdFat is not seeing the card.
  13. This is a basic hardware problem. Do not reformat your SD.
  14. --------------------------------------------------------------------------------
  15. card.init() failures caused by resistor SPI level shifters. Some, mostly older,
  16. SD cards work with resistor level shifters but may be flaky with random errors.
  17. Many newer SD cards have edge detectors and fail with errorCode() = 1. These
  18. cards will not work with resistor level shifters since SdFat does not see the
  19. card at low SPI clock rate.
  20. Other cards fail with an errorCode() > 1. These cards see SD commands at low
  21. SPI clock rate but fail at higher SPI clock rate. It may be possible to use
  22. these cards by replacing card.init() with card.init(SPI_HALF_SPEED).
  23. This will slow the the SPI clock by 50%.