Fixed issue with wifi function in network component not initializing netif. Now made the init explicit

This commit is contained in:
2026-03-28 12:46:26 -04:00
parent dc935dd72d
commit 1973b3a0ff
3 changed files with 10 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
idf_component_register(SRCS "http_client.c"
INCLUDE_DIRS "include")
+7
View File
@@ -0,0 +1,7 @@
#include <stdio.h>
#include "http_client.h"
void func(void)
{
}
+1
View File
@@ -0,0 +1 @@
void func(void);