2023-01-15 20:21:49 +01:00
|
|
|
#ifndef __UI_HTTP_SERVER_H__
|
|
|
|
|
#define __UI_HTTP_SERVER_H__
|
|
|
|
|
|
2025-01-01 22:32:05 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-02-21 18:43:18 +01:00
|
|
|
void init_http_server_task(void);
|
2023-01-15 20:21:49 +01:00
|
|
|
|
|
|
|
|
typedef struct {
|
2023-08-15 14:34:40 +02:00
|
|
|
char str_value[8];
|
2023-01-15 20:21:49 +01:00
|
|
|
long long_value;
|
2023-08-15 14:34:40 +02:00
|
|
|
float gain_1;
|
|
|
|
|
float gain_2;
|
|
|
|
|
float gain_3;
|
2023-01-15 20:21:49 +01:00
|
|
|
} URL_t;
|
|
|
|
|
|
2025-01-01 22:32:05 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-01-15 20:21:49 +01:00
|
|
|
#endif // __UI_HTTP_SERVER_H__
|