2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2011-11-18 22:17:37 +01:00
|
|
|
*
|
2016-03-24 19:01:20 +01:00
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
2011-11-18 22:17:37 +01:00
|
|
|
*
|
2016-03-24 19:01:20 +01:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2011-11-18 22:17:37 +01:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2016-03-24 19:01:20 +01:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-11-18 22:17:37 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2016-03-24 19:01:20 +01:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Arduino SdFat Library
|
|
|
|
* Copyright (C) 2009 by William Greiman
|
|
|
|
*
|
|
|
|
* This file is part of the Arduino Sd2Card Library
|
2011-11-18 22:17:37 +01:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \brief SdFile class
|
|
|
|
*/
|
2015-01-16 00:52:10 +01:00
|
|
|
#include "Marlin.h"
|
|
|
|
|
2015-07-31 07:21:18 +02:00
|
|
|
#if ENABLED(SDSUPPORT)
|
2011-12-22 16:11:15 +01:00
|
|
|
#include "SdBaseFile.h"
|
2011-11-30 08:57:30 +01:00
|
|
|
#include <Print.h>
|
2011-11-18 22:17:37 +01:00
|
|
|
#ifndef SdFile_h
|
|
|
|
#define SdFile_h
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* \class SdFile
|
|
|
|
* \brief SdBaseFile with Print.
|
|
|
|
*/
|
|
|
|
class SdFile : public SdBaseFile, public Print {
|
|
|
|
public:
|
|
|
|
SdFile() {}
|
|
|
|
SdFile(const char* name, uint8_t oflag);
|
2011-12-01 16:38:01 +01:00
|
|
|
#if ARDUINO >= 100
|
2015-10-03 08:08:58 +02:00
|
|
|
size_t write(uint8_t b);
|
2011-12-22 16:11:15 +01:00
|
|
|
#else
|
2011-12-01 16:38:01 +01:00
|
|
|
void write(uint8_t b);
|
2011-12-22 16:11:15 +01:00
|
|
|
#endif
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2011-11-18 22:17:37 +01:00
|
|
|
int16_t write(const void* buf, uint16_t nbyte);
|
|
|
|
void write(const char* str);
|
|
|
|
void write_P(PGM_P str);
|
|
|
|
void writeln_P(PGM_P str);
|
|
|
|
};
|
|
|
|
#endif // SdFile_h
|
2015-01-16 00:52:10 +01:00
|
|
|
|
|
|
|
|
2016-03-24 19:01:20 +01:00
|
|
|
#endif
|