GrumpyOldPizza / arduino-STM32L4

69 stars 60 forks source link

seek(0) doesn't work #31

Open profezzorn opened 6 years ago

profezzorn commented 6 years ago

Because SeekMode enum doesn't match the defines in dosfs_api.h

Suggested fix:

enum SeekMode { SeekSet = F_SEEK_SET, SeekCur = F_SEEK_CUR, SeekEnd = F_SEEK_END };

GrumpyOldPizza commented 6 years ago

Got an update coming that will adjust dosfs_api.h properly.