Add simple static webserver
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
j3d1 2021-07-19 01:25:27 +02:00
parent 3dffd0f0d2
commit 23cb4a558b
12 changed files with 271 additions and 4 deletions

View file

@ -24,4 +24,5 @@ void user_init(void)
xTaskCreate(wifi_task, "wifi_task", 512, NULL, 2, NULL);
xTaskCreate(&httpd_task, "httpd_task", 512, NULL, 2, NULL);
}