-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ardio.cpp
304 lines (231 loc) · 5.88 KB
/
ardio.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
#include <arduino.h>
#include <alloca.h>
#include <stdio.h>
#define SOD_OK 0 /* Everything went well */
#define SOD_ERR -1
#define SOD_UNSUPPORTED -1 /* Unsupported Pixel format */
#define SOD_OUTOFMEM -4 /* Out-of-Memory */
#define SOD_ABORT -5 /* User callback request an operation abort */
#define SOD_IOERR -6 /* IO error */
#define SOD_LIMIT -7 /* Limit reached */
#include "ardio.h"
#include <SD.h>
#ifdef AVR
#include "avrclose.h"
//#error "AVR"
#endif //AVR
bool SDInit=false;
typedef struct fSlot
{
File f;
int f_EOF;
int Error;
bool Empty=true;
FILE *Fobj;
} ;
static struct fSlot *Directory;
static struct fSlot FilesSlots[files];
//this functions defines for fdevopen
static int fileputchar(char c, FILE *stream)
{
return 0;
}
static int filegetchar(FILE *stream)
{
char data =0; //Temporarly store received data
return data;
}
fSlot* SDOpen(const char *name, const char *ft_type)
{
int i=0;
struct fSlot *g;
while((!FilesSlots[i].Empty)&&(i<files)) //finding
{i++;}
if (i>=files) {return NULL;}
if (ft_type=="r"){FilesSlots[i].f=SD.open(name,FILE_WRITE);}
else { FilesSlots[i].f=SD.open(name,FILE_WRITE);}
FilesSlots[i].Empty=false;
FilesSlots[i].f_EOF=0; FilesSlots[i].Error=0;
return &FilesSlots[i];
}
FILE * fopen(const char *name, const char *ft_type)
{
FILE *OUT;
#ifdef AVR
OUT=fdevopen(fileputchar,filegetchar); //this function din't defined in SAMD stdio.h
#else
OUT=new FILE;
#endif //AVR
fSlot *Slot=SDOpen(name,ft_type);
Slot->Fobj=OUT;
#ifdef AVR
OUT->udata=Slot;
#else
OUT->_data=(_reent*)Slot;
#endif //AVR
return OUT;// OUT;//send fake FILE pointer
}
int fclose(FILE *f)
{
#ifdef AVR
struct fSlot *g=(fSlot*)(f->udata);
#else
struct fSlot *g=(fSlot*)(f->_data);
#endif //AVR
g->Empty=true;
g->f.close();
#ifdef AVR
FileClose(f);
#else
delete f;
#endif //AVR
}
int feof(FILE *f)
{
#ifdef AVR
struct fSlot *g=(fSlot*)(f->udata);
#else
struct fSlot *g=(fSlot*)(f->_data);
#endif //AVR
return g->f_EOF;
}
int ferror(FILE *f)
{
#ifdef AVR
struct fSlot *g=(fSlot*)(f->udata);
#else
struct fSlot *g=(fSlot*)(f->_data);
#endif //AVR
return g->Error;
}
size_t fread(void *buf, size_t _size, size_t _n, FILE *f)
{
#ifdef AVR
struct fSlot *g=(fSlot*)(f->udata);
#else
struct fSlot *g=(fSlot*)(f->_data);
#endif //AVR
return (size_t)g->f.read(buf,_size*_n);
g->f_EOF=(g->f.position()>=g->f.size())?1:0;
}
size_t filewrite(const void *buf, size_t _size, size_t _n, FILE *f)
{
#ifdef AVR
struct fSlot *g=(fSlot*)(f->udata);
#else
struct fSlot *g=(fSlot*)(f->_data);
#endif //AVR
return g->f.write((const uint8_t*)buf,_size*_n);
}
void clearerr(FILE *f)
{
#ifdef AVR
struct fSlot *g=(fSlot*)(f->udata);
#else
struct fSlot *g=(fSlot*)(f->_data);
#endif //AVR
g->f_EOF=0;
g->Error=0;
}
long ftell(FILE *f)
{
#ifdef AVR
struct fSlot *g=(fSlot*)(f->udata);
#else
struct fSlot *g=(fSlot*)(f->_data);
#endif //AVR
return g->f.position();
}
//fseek has diferense with standard
// if result position past end of file generate error in standard don't.
int fseek(FILE *f,long offset, int origin)
{ int seekpos;
#ifdef AVR
struct fSlot *g=(fSlot*)(f->udata);
#else
struct fSlot *g=(fSlot*)(f->_data);
#endif //AVR
switch (origin)
{
case SEEK_SET: if (offset<0) {return SOD_ERR;}
else {return (g->f.seek(offset))?SOD_OK:SOD_ERR;};
case SEEK_CUR: seekpos=offset+g->f.position();
if (seekpos<0) {return SOD_ERR;}
else {return (g->f.seek(seekpos))?SOD_OK:SOD_ERR;};
case SEEK_END: seekpos=offset+g->f.size();
if (seekpos<0) {return SOD_ERR;}
else {return (g->f.seek(seekpos))?SOD_OK:SOD_ERR;}
}
return SOD_ERR;
}
int _chdir(const char *zPath) /* int (*xChdir)(const char *) */
{
}
int _getcwd(SyBlob *pCtx) /* int (*xGetcwd)(SyBlob *) */
{
}
int _mkdir(const char *zPath, int mode, int recursive) /* int (*xMkdir)(const char *, int, int) */
{
}
int _rmdir(const char *zPath) /* int (*xRmdir)(const char *) */
{
}
int _isdir(const char *zPath) /* int (*xIsdir)(const char *) */
{
}
int _Rename(const char *ch) /* int (*xRename)(const char *, const char *) */
{
}
int _Realpath(const char *ch) /*int (*xRealpath)(const char *, SyBlob *)*/
{
}
/* Directory */
int _Dir_Open(const char *ch, void **ppHandle)
{
}
int _Dir_Close(const char *ch)
{
}
int _Dir_Read(const char *ch)
{
}
int _Dir_Rewind(const char *ch)
{
}
/* Systems function */
int _unlink(const char *ch) /* int (*xUnlink)(const char *) */
{
}
int _FileExists(const char *ch) /* int (*xFileExists)(const char *) */
{
}
int64_t _DiskFreeSpace(const char *ch) /* int64_t (*xFreeSpace)(const char *) */
{
}
int64_t _DiskTotalSpace(const char *ch) /* int64_t (*xTotalSpace)(const char *) */
{
}
int64_t _FileSize(const char *ch) /* int64_t (*xFileSize)(const char *) */
{
}
int _isfile(const char *ch) /* int (*xIsfile)(const char *) */
{
}
int _isReadable(const char *ch) /* int (*xReadable)(const char *) */
{
}
int _iswritable(const char *ch) /* int (*xWritable)(const char *) */
{
}
int _isexecutable(const char *ch) /* int (*xExecutable)(const char *) */
{
}
int _Mmap(const char *ch,void **p,size_t *nb) /* int (*xMmap)(const char *, void **, size_t *) */
{
}
int _Unmap(void *p,size_t sz) /* void (*xUnmap)(void *, size_t); */
{
}
float _GetTicks(void)
{
}