Skip to content

Commit 964cbce

Browse files
committed
bugfix
1 parent 18dd75b commit 964cbce

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.vscode/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"idf.pythonInstallPath": "C:\\Espressif\\tools\\idf-python\\3.11.2\\python.exe",
33
"files.associations": {
4-
"git_diff": "cpp"
4+
"git_diff": "cpp",
5+
"global.h": "c",
6+
"config.h": "c"
57
}
68
}

main/web_server.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ const char html_apple_cna[] =
4848
#include <sys/socket.h>
4949
#include <netdb.h>
5050
#include <arpa/inet.h>
51+
#ifdef IS_USB
52+
#include "usb/uac_host.h"
53+
#endif
5154

5255
#define TAG "web_server"
5356

0 commit comments

Comments
 (0)