18 lines
217 B
C
18 lines
217 B
C
//
|
|
// Created by jedi on 25.06.21.
|
|
//
|
|
|
|
#ifndef FIRMWARE_WEB_H
|
|
#define FIRMWARE_WEB_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void httpd_task(void *pvParameters);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //FIRMWARE_WEB_H
|