Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/esp-link/blame/commit/290fe32e467e96094175d906765df7f582668f64/user/espfs.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
esp-link/user/espfs.h

13 lines
201 B

#ifndef ESPFS_H
#define ESPFS_H
typedef struct EspFsFile EspFsFile;
EspFsFile *espFsOpen(char *fileName);
int espFsRead(EspFsFile *fh, char *buff, int len);
void espFsClose(EspFsFile *fh);
#endif