Skip to content

Commit

Permalink
s3 slow note serial example
Browse files Browse the repository at this point in the history
  • Loading branch information
martinberlin committed Oct 13, 2023
1 parent b0b58be commit 5f4e104
Show file tree
Hide file tree
Showing 6 changed files with 14,979 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/tinyusb-serial/CMakeLists.txt
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)
11 changes: 11 additions & 0 deletions examples/tinyusb-serial/main/CMakeLists.txt
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
)
Loading

0 comments on commit 5f4e104

Please sign in to comment.