Skip to content

Commit 4323bc8

Browse files
author
Raffael Rostagno
committed
samples: boards: esp32s3_devkitm: Add USB samples
Add samples for HID-keyboard and mass storage. Signed-off-by: Raffael Rostagno <[email protected]>
1 parent a9ce51e commit 4323bc8

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

samples/subsys/usb/hid-keyboard/app.overlay

+4
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,7 @@
1313
in-polling-period-us = <1000>;
1414
};
1515
};
16+
17+
&zephyr_udc0 {
18+
status = "okay";
19+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* Copyright (c) 2025 Espressif Systems (Shanghai) Co., Ltd.
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
msc_disk0 {
9+
compatible = "zephyr,flash-disk";
10+
partition = <&storage_partition>;
11+
disk-name = "NAND";
12+
cache-size = <4096>;
13+
};
14+
};
15+
16+
&zephyr_udc0 {
17+
status = "okay";
18+
};

0 commit comments

Comments
 (0)