ESP8266 part of the f105-motor-demo project (see f105-motor-demo_stm32)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
393 B

8 years ago
#ifndef HTTPDESPFS_H
#define HTTPDESPFS_H
#include "httpd.h"
/** Catch-all, use in '*' routes */
httpd_cgi_state cgiEspFsHook(HttpdConnData *connData);
/** Template route */
httpd_cgi_state ICACHE_FLASH_ATTR cgiEspFsTemplate(HttpdConnData *connData);
8 years ago
/** Static file route with the file as the first arg. */
httpd_cgi_state ICACHE_FLASH_ATTR cgiEspFsFile(HttpdConnData *connData);
#endif