2016-03-25 01:19:46 -05:00
|
|
|
/**
|
2016-03-24 13:01:20 -05:00
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2011-11-18 15:17:37 -06:00
|
|
|
*
|
2016-03-24 13:01:20 -05:00
|
|
|
* Based on Sprinter and grbl.
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2011-11-18 15:17:37 -06:00
|
|
|
*
|
2016-03-24 13:01:20 -05:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2011-11-18 15:17:37 -06: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 13:01:20 -05:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-11-18 15:17:37 -06: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
|
2020-07-22 22:20:14 -05:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-03-24 13:01:20 -05:00
|
|
|
*
|
|
|
|
*/
|
2018-11-04 02:25:55 -06:00
|
|
|
#pragma once
|
2016-03-24 13:01:20 -05:00
|
|
|
|
2017-11-15 00:06:20 -06:00
|
|
|
/**
|
2020-10-24 17:13:10 -05:00
|
|
|
* sd/SdFile.h
|
|
|
|
*
|
2016-03-24 13:01:20 -05:00
|
|
|
* Arduino SdFat Library
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2009 by William Greiman
|
2016-03-24 13:01:20 -05:00
|
|
|
*
|
|
|
|
* This file is part of the Arduino Sd2Card Library
|
2011-11-18 15:17:37 -06:00
|
|
|
*/
|
2017-09-06 06:28:32 -05:00
|
|
|
|
2011-12-22 09:11:15 -06:00
|
|
|
#include "SdBaseFile.h"
|
2017-09-06 06:28:32 -05:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2011-11-18 15:17:37 -06:00
|
|
|
/**
|
|
|
|
* \class SdFile
|
|
|
|
* \brief SdBaseFile with Print.
|
|
|
|
*/
|
2020-10-24 17:13:10 -05:00
|
|
|
class SdFile : public SdBaseFile {
|
2011-11-18 15:17:37 -06:00
|
|
|
public:
|
|
|
|
SdFile() {}
|
2021-03-29 20:36:37 -05:00
|
|
|
SdFile(const char *name, uint8_t oflag);
|
2011-12-01 09:38:01 -06:00
|
|
|
#if ARDUINO >= 100
|
2015-10-03 01:08:58 -05:00
|
|
|
size_t write(uint8_t b);
|
2011-12-22 09:11:15 -06:00
|
|
|
#else
|
2021-04-04 18:07:16 -05:00
|
|
|
void write(uint8_t b);
|
2011-12-22 09:11:15 -06:00
|
|
|
#endif
|
2015-10-03 01:08:58 -05:00
|
|
|
|
2021-04-04 18:07:16 -05:00
|
|
|
int16_t write(const void *buf, uint16_t nbyte);
|
2021-03-29 20:36:37 -05:00
|
|
|
void write(const char *str);
|
2011-11-18 15:17:37 -06:00
|
|
|
void write_P(PGM_P str);
|
|
|
|
void writeln_P(PGM_P str);
|
|
|
|
};
|