-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0b58be
commit 5f4e104
Showing
6 changed files
with
14,979 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cmake_minimum_required(VERSION 3.16.0) | ||
set(EXTRA_COMPONENT_DIRS "../../") | ||
include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||
project(usb_cdc_example) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# USB CDC examples - Only ESP32S3 | ||
# Note: In order to try this you need to have a USB connected directly to MCU like in v7 hardware | ||
# ESP_USB+ to GPIO19, ESP_USB- to GPIO20 | ||
|
||
# Dumb slow terminal example, type and write character in display | ||
set(app_sources "serial-note.c") | ||
|
||
idf_component_register(SRCS ${app_sources} | ||
REQUIRES epdiy | ||
esp_tinyusb | ||
) |
Oops, something went wrong.