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

18 lines
466 B

#ifndef CONFIG_H
#define CONFIG_H
typedef struct {
uint32_t seq; // flash write sequence number
uint32_t crc; // FlashConfig crc
int8_t reset_pin, isp_pin, conn_led_pin, ser_led_pin;
int32_t baud_rate;
char hostname[32]; // if using DHCP
uint32_t staticip, netmask, gateway; // using DHCP if staticip==0
} FlashConfig;
extern FlashConfig flashConfig;
bool configSave(void);
bool configRestore(void);
void configWipe(void);
#endif