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.

SdFile.cpp 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* Arduino SdFat Library
  2. * Copyright (C) 2009 by William Greiman
  3. *
  4. * This file is part of the Arduino SdFat Library
  5. *
  6. * This Library is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This Library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with the Arduino SdFat Library. If not, see
  18. * <http://www.gnu.org/licenses/>.
  19. */
  20. #include "Marlin.h"
  21. #include "SdFile.h"
  22. /** Create a file object and open it in the current working directory.
  23. *
  24. * \param[in] path A path with a valid 8.3 DOS name for a file to be opened.
  25. *
  26. * \param[in] oflag Values for \a oflag are constructed by a bitwise-inclusive
  27. * OR of open flags. see SdBaseFile::open(SdBaseFile*, const char*, uint8_t).
  28. */
  29. SdFile::SdFile(const char* path, uint8_t oflag) : SdBaseFile(path, oflag) {
  30. }
  31. //------------------------------------------------------------------------------
  32. /** Write data to an open file.
  33. *
  34. * \note Data is moved to the cache but may not be written to the
  35. * storage device until sync() is called.
  36. *
  37. * \param[in] buf Pointer to the location of the data to be written.
  38. *
  39. * \param[in] nbyte Number of bytes to write.
  40. *
  41. * \return For success write() returns the number of bytes written, always
  42. * \a nbyte. If an error occurs, write() returns -1. Possible errors
  43. * include write() is called before a file has been opened, write is called
  44. * for a read-only file, device is full, a corrupt file system or an I/O error.
  45. *
  46. */
  47. int16_t SdFile::write(const void* buf, uint16_t nbyte) {
  48. return SdBaseFile::write(buf, nbyte);
  49. }
  50. //------------------------------------------------------------------------------
  51. /** Write a byte to a file. Required by the Arduino Print class.
  52. * \param[in] b the byte to be written.
  53. * Use writeError to check for errors.
  54. */
  55. #if ARDUINO >= 100
  56. size_t SdFile::write(uint8_t b)
  57. #else
  58. void SdFile::write(uint8_t b)
  59. #endif
  60. {
  61. SdBaseFile::write(&b, 1);
  62. }
  63. //------------------------------------------------------------------------------
  64. /** Write a string to a file. Used by the Arduino Print class.
  65. * \param[in] str Pointer to the string.
  66. * Use writeError to check for errors.
  67. */
  68. void SdFile::write(const char* str) {
  69. SdBaseFile::write(str, strlen(str));
  70. }
  71. //------------------------------------------------------------------------------
  72. /** Write a PROGMEM string to a file.
  73. * \param[in] str Pointer to the PROGMEM string.
  74. * Use writeError to check for errors.
  75. */
  76. void SdFile::write_P(PGM_P str) {
  77. for (uint8_t c; (c = pgm_read_byte(str)); str++) write(c);
  78. }
  79. //------------------------------------------------------------------------------
  80. /** Write a PROGMEM string followed by CR/LF to a file.
  81. * \param[in] str Pointer to the PROGMEM string.
  82. * Use writeError to check for errors.
  83. */
  84. void SdFile::writeln_P(PGM_P str) {
  85. write_P(str);
  86. write_P(PSTR("\r\n"));
  87. }