currently it is either WiFi or Ethernet. If Ethernet is enabled through menuconfig it gets priority and WiFi is disabled.
12 lines
198 B
C
12 lines
198 B
C
#ifndef __UI_HTTP_SERVER_H__
|
|
#define __UI_HTTP_SERVER_H__
|
|
|
|
void init_http_server_task(char *key);
|
|
|
|
typedef struct {
|
|
char str_value[4];
|
|
long long_value;
|
|
} URL_t;
|
|
|
|
#endif // __UI_HTTP_SERVER_H__
|