Ignore:
Timestamp:
Apr 29, 2017, 4:33:37 PM (7 years ago)
Author:
coas-nagasima
Message:

ファイルを追加、更新。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/prototool/src/arduino.h

    r278 r279  
    3030#include <us_ticker_api.h>
    3131#include <wait_api.h>
    32 #include "diskio.h"
    33 #include "ff.h"
    3432
    3533#ifndef bool
     
    116114
    117115typedef struct File {
    118         FIL fp;
     116        int  fd;
    119117} File;
    120118
     
    130128int file_read(File *fd);
    131129
    132 typedef struct SD {
    133         DSTATUS dst;
    134         BYTE type;
    135         FATFS FatFs;
    136 } SD;
    137 
    138 extern SD Sd;
    139 
    140130bool SD_begin();
    141131bool SD_open(File *file, const char *path, int mode);
     
    147137
    148138typedef struct FILEEEP {
    149         FIL fp;
     139        int fd;
    150140} FILEEEP;
    151141
Note: See TracChangeset for help on using the changeset viewer.