瀏覽代碼

Return SdBaseFile into previous state

no changes necessary afterall
D.R.racer 4 年之前
父節點
當前提交
71d825d0f2
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      Firmware/SdBaseFile.cpp

+ 0 - 2
Firmware/SdBaseFile.cpp

@@ -533,7 +533,6 @@ bool SdBaseFile::mkdir(SdBaseFile* parent, const uint8_t dname[11]) {
 bool SdBaseFile::open(const char* path, uint8_t oflag) {
   return open(cwd_, path, oflag);
 }
-  
 //------------------------------------------------------------------------------
 /** Open a file or directory by name.
  *
@@ -1031,7 +1030,6 @@ int16_t SdBaseFile::read() {
   uint8_t b;
   return read(&b, 1) == 1 ? b : -1;
 }
-
 //------------------------------------------------------------------------------
 /** Read data from a file starting at the current position.
  *