ソースを参照

fix dep includes

main
John Robinson 3年前
コミット
3bcc541545
この署名に対応する既知のキーがデータベースに存在しません
2個のファイルの変更4行の追加4行の削除
  1. +1
    -1
      src/sd/SD.cpp
  2. +3
    -3
      src/sd/SD.h

+ 1
- 1
src/sd/SD.cpp ファイルの表示

@@ -20,7 +20,7 @@
* THE SOFTWARE.
*/

#include <Arduino.h>
#include <core/Arduino.h>
#include <sd/SD.h>

SDClass SD;

+ 3
- 3
src/sd/SD.h ファイルの表示

@@ -23,8 +23,8 @@
#ifndef __SD_H__
#define __SD_H__

#include <Arduino.h>
#include <SdFat.h>
#include <core/Arduino.h>
#include <sdfat/SdFat.h>
// Use FILE_READ & FILE_WRITE as defined by FS.h
#if defined(FILE_READ) && !defined(FS_H)
#undef FILE_READ
@@ -32,7 +32,7 @@
#if defined(FILE_WRITE) && !defined(FS_H)
#undef FILE_WRITE
#endif
#include <FS.h>
#include <core/FS.h>

#if defined(__MK64FX512__) || defined(__MK66FX1M0__) || defined(__IMXRT1062__)
#define BUILTIN_SDCARD 254

読み込み中…
キャンセル
保存