ESP-IDF 5.5.1
ESP32-S3 DevKitc 16MB 8MB PSRAM
VSCODE
I'm trying to get the TUSB_CONSOLE example working, but the output is only going to UART0, not on USB.
when i select CDC on menu config, nothing on UART0 and nothing on UART0.
My device description (tinyusb) is ok on menuconfig (0x403, 0x6001, 0x0409.
I have tested with ESP32-P4 is a same, excepted sample code vcp that work on ESP32-S3 and ESP32-P4
Has anyone else experienced this problem?
Code: Select all
# The following five lines of boilerplate have to be in your project's
# CMakeLists in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)
add_compile_options(-w) # Turn off warnings until esp_tinyusb is updated IEC-86
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
# "Trim" the build. Include the minimal set of components, main, and anything it depends on.
idf_build_set_property(MINIMAL_BUILD ON)
project(tusb_console)
Code: Select all
idf_component_register(SRCS "tusb_console_main.c"
INCLUDE_DIRS .
#PRIV_REQUIRES esp_vfs_console
)