2022-08-02 11:45 PM
I have a webserver on a stm32f407 and everything works great! I repeated the same project, but on stm32h750 and the webserver does not work.
But if "LWIP_HTTPD_DYNAMIC_HEADERS" is OFF the web page works partially.
To me need "LWIP_HTTPD_DYNAMIC_HEADERS" is "ON".
But, probably, I needed in stm32h750 something else to configure, unlike stm32f407!?
Is anyone facing the same problem?
2022-08-06 12:40 PM
Did no one encounter this problem?
2022-08-09 04:53 AM
#define LWIP_HTTPD_CGI 1
#define LWIP_HTTPD_SUPPORT_POST 1
#define LWIP_HTTPD_DYNAMIC_HEADERS 1
#define LWIP_HTTPD_CUSTOM_FILES 1
I'm even building the contents of custom "files" dynamically and all of it and more works for me. Why? Because I have built a correct platform underneath. Until the lower layers are reliable, there is no point in wondering why higher layers don't work.