0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-06-24 16:00:58 +00:00

Move SD Fat library out of main src

This commit is contained in:
odewdney 2015-01-13 13:31:55 +00:00
parent 9d9c859ac1
commit f84ff4ba7d
17 changed files with 64 additions and 116 deletions
ArduinoAddons/Arduino_1.0.x/libraries/SdFat

View file

@ -17,9 +17,6 @@
* along with the Arduino SdFat Library. If not, see
* <http://www.gnu.org/licenses/>.
*/
#include "Marlin.h"
#ifdef SDSUPPORT
#include "SdFile.h"
/** Create a file object and open it in the current working directory.
*
@ -90,6 +87,3 @@ void SdFile::writeln_P(PGM_P str) {
write_P(str);
write_P(PSTR("\r\n"));
}
#endif