File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ set(LIBRARY_SRCS
73
73
libraries/Ticker/src/Ticker.cpp
74
74
libraries/Update/src/Updater.cpp
75
75
libraries/Update/src/HttpsOTAUpdate.cpp
76
+ libraries/USB/USBMSC.cpp
76
77
libraries/WebServer/src/WebServer.cpp
77
78
libraries/WebServer/src/Parsing.cpp
78
79
libraries/WebServer/src/detail/mimetable.cpp
@@ -151,6 +152,7 @@ set(includedirs
151
152
libraries/SPI/src
152
153
libraries/Ticker/src
153
154
libraries/Update/src
155
+ libraries/USB/src
154
156
libraries/WebServer/src
155
157
libraries/WiFiClientSecure/src
156
158
libraries/WiFi/src
Original file line number Diff line number Diff line change 1
- // Copyright 2015-2020 Espressif Systems (Shanghai) PTE LTD
1
+ // Copyright 2015-2021 Espressif Systems (Shanghai) PTE LTD
2
2
//
3
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
4
// you may not use this file except in compliance with the License.
11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
+
14
15
#include " esp32-hal.h"
15
16
#include " esp32-hal-tinyusb.h"
16
17
#include " USBMSC.h"
Original file line number Diff line number Diff line change
1
+ // Copyright 2015-2021 Espressif Systems (Shanghai) PTE LTD
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
1
15
#pragma once
16
+ #include < stdint.h>
17
+ #include < stdbool.h>
2
18
3
19
// Invoked when received Start Stop Unit command
4
20
// - Start = 0 : stopped power mode, if load_eject = 1 : unload disk storage
You can’t perform that action at this time.
0 commit comments