Skip to content

Commit 7043218

Browse files
committed
Initial support for ESP32-S31 devkit & update elf and bsp components
1 parent 649ad51 commit 7043218

83 files changed

Lines changed: 118 additions & 242 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

components/usb-host/CMakeLists.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
idf_build_get_property(idf_target IDF_TARGET)
2-
if("${idf_target}" STREQUAL "esp32p4")
2+
if("${idf_target}" STREQUAL "esp32p4" OR "${idf_target}" STREQUAL "esp32s31")
33
idf_component_register(
44
SRCS "src/hid_keyboard.c"
55
INCLUDE_DIRS "include"
66
REQUIRES usb badge-bsp
77
)
8-
9-
endif()
8+
endif()

components/usb-host/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ dependencies:
55
usb_host_hid:
66
version: "^1.0.1"
77
rules:
8-
- if: target == esp32p4
8+
- if: target == esp32p4 || target == esp32s31
198 Bytes
426 Bytes
293 Bytes
283 Bytes
292 Bytes
293 Bytes
288 Bytes
291 Bytes

0 commit comments

Comments
 (0)