/* * SPDX-FileCopyrightText: 2019 Ha Thach (tinyusb.org), * SPDX-FileContributor: 2020-2025 Espressif Systems (Shanghai) CO LTD * SPDX-License-Identifier: MIT * * Copyright (c) 2019 Ha Thach (tinyusb.org), * Additions Copyright (c) 2020, Espressif Systems (Shanghai) PTE LTD * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * */ #pragma once #include "tusb_option.h" #include "sdkconfig.h" #ifdef __cplusplus extern "C" { #endif #ifndef CONFIG_TINYUSB_CDC_ENABLED # define CONFIG_TINYUSB_CDC_ENABLED 0 #endif #ifndef CONFIG_TINYUSB_CDC_COUNT # define CONFIG_TINYUSB_CDC_COUNT 0 #endif #ifndef CONFIG_TINYUSB_MSC_ENABLED # define CONFIG_TINYUSB_MSC_ENABLED 0 #endif #ifndef CONFIG_TINYUSB_HID_COUNT # define CONFIG_TINYUSB_HID_COUNT 0 #endif #ifndef CONFIG_TINYUSB_MIDI_COUNT # define CONFIG_TINYUSB_MIDI_COUNT 0 #endif #ifndef CONFIG_TINYUSB_VENDOR_COUNT # define CONFIG_TINYUSB_VENDOR_COUNT 0 #endif #ifndef CONFIG_TINYUSB_NET_MODE_ECM_RNDIS # define CONFIG_TINYUSB_NET_MODE_ECM_RNDIS 0 #endif #ifndef CONFIG_TINYUSB_NET_MODE_NCM # define CONFIG_TINYUSB_NET_MODE_NCM 0 #endif #ifndef CONFIG_TINYUSB_DFU_MODE_DFU # define CONFIG_TINYUSB_DFU_MODE_DFU 0 #endif #ifndef CONFIG_TINYUSB_DFU_MODE_DFU_RUNTIME # define CONFIG_TINYUSB_DFU_MODE_DFU_RUNTIME 0 #endif #ifndef CONFIG_TINYUSB_BTH_ENABLED # define CONFIG_TINYUSB_BTH_ENABLED 0 # define CONFIG_TINYUSB_BTH_ISO_ALT_COUNT 0 #endif #ifndef CONFIG_TINYUSB_DEBUG_LEVEL # define CONFIG_TINYUSB_DEBUG_LEVEL 0 #endif #ifdef CONFIG_TINYUSB_RHPORT_HS # define CFG_TUSB_RHPORT1_MODE OPT_MODE_DEVICE | OPT_MODE_HIGH_SPEED #else # define CFG_TUSB_RHPORT0_MODE OPT_MODE_DEVICE | OPT_MODE_FULL_SPEED #endif // ------------------------------------------------------------------------ // DCD DWC2 Mode // ------------------------------------------------------------------------ #define CFG_TUD_DWC2_SLAVE_ENABLE 1 // Enable Slave/IRQ by default // ------------------------------------------------------------------------ // DMA & Cache // ------------------------------------------------------------------------ #ifdef CONFIG_TINYUSB_MODE_DMA // DMA Mode has a priority over Slave/IRQ mode and will be used if hardware supports it #define CFG_TUD_DWC2_DMA_ENABLE 1 // Enable DMA #if CONFIG_CACHE_L1_CACHE_LINE_SIZE // To enable the dcd_dcache clean/invalidate/clean_invalidate calls # define CFG_TUD_MEM_DCACHE_ENABLE 1 #define CFG_TUD_MEM_DCACHE_LINE_SIZE CONFIG_CACHE_L1_CACHE_LINE_SIZE // NOTE: starting with esp-idf v5.3 there is specific attribute present: DRAM_DMA_ALIGNED_ATTR # define CFG_TUSB_MEM_SECTION __attribute__((aligned(CONFIG_CACHE_L1_CACHE_LINE_SIZE))) DRAM_ATTR #else # define CFG_TUD_MEM_CACHE_ENABLE 0 # define CFG_TUSB_MEM_SECTION TU_ATTR_ALIGNED(4) DRAM_ATTR #endif // CONFIG_CACHE_L1_CACHE_LINE_SIZE #endif // CONFIG_TINYUSB_MODE_DMA #define CFG_TUSB_OS OPT_OS_FREERTOS /* USB DMA on some MCUs can only access a specific SRAM region with restriction on alignment. * Tinyusb use follows macros to declare transferring memory so that they can be put * into those specific section. * e.g * - CFG_TUSB_MEM SECTION : __attribute__ (( section(".usb_ram") )) * - CFG_TUSB_MEM_ALIGN : __attribute__ ((aligned(4))) */ #ifndef CFG_TUSB_MEM_SECTION # define CFG_TUSB_MEM_SECTION #endif #ifndef CFG_TUSB_MEM_ALIGN # define CFG_TUSB_MEM_ALIGN TU_ATTR_ALIGNED(4) #endif #ifndef CFG_TUD_ENDPOINT0_SIZE #define CFG_TUD_ENDPOINT0_SIZE 64 #endif // Debug Level #define CFG_TUSB_DEBUG CONFIG_TINYUSB_DEBUG_LEVEL #define CFG_TUSB_DEBUG_PRINTF esp_rom_printf // TinyUSB can print logs from ISR, so we must use esp_rom_printf() // CDC FIFO size of TX and RX #define CFG_TUD_CDC_RX_BUFSIZE CONFIG_TINYUSB_CDC_RX_BUFSIZE #define CFG_TUD_CDC_TX_BUFSIZE CONFIG_TINYUSB_CDC_TX_BUFSIZE // MSC Buffer size of Device Mass storage #define CFG_TUD_MSC_BUFSIZE CONFIG_TINYUSB_MSC_BUFSIZE // MIDI macros #define CFG_TUD_MIDI_EP_BUFSIZE 64 #define CFG_TUD_MIDI_EPSIZE CFG_TUD_MIDI_EP_BUFSIZE #define CFG_TUD_MIDI_RX_BUFSIZE 64 #define CFG_TUD_MIDI_TX_BUFSIZE 64 // Vendor FIFO size of TX and RX #define CFG_TUD_VENDOR_RX_BUFSIZE (TUD_OPT_HIGH_SPEED ? 512 : 64) #define CFG_TUD_VENDOR_TX_BUFSIZE (TUD_OPT_HIGH_SPEED ? 512 : 64) // DFU macros #define CFG_TUD_DFU_XFER_BUFSIZE CONFIG_TINYUSB_DFU_BUFSIZE // Number of BTH ISO alternatives #define CFG_TUD_BTH_ISO_ALT_COUNT CONFIG_TINYUSB_BTH_ISO_ALT_COUNT // Enabled device class driver #define CFG_TUD_CDC CONFIG_TINYUSB_CDC_COUNT #define CFG_TUD_MSC CONFIG_TINYUSB_MSC_ENABLED #define CFG_TUD_HID CONFIG_TINYUSB_HID_COUNT #define CFG_TUD_MIDI CONFIG_TINYUSB_MIDI_COUNT #define CFG_TUD_VENDOR CONFIG_TINYUSB_VENDOR_COUNT #define CFG_TUD_ECM_RNDIS CONFIG_TINYUSB_NET_MODE_ECM_RNDIS #define CFG_TUD_NCM CONFIG_TINYUSB_NET_MODE_NCM #define CFG_TUD_DFU CONFIG_TINYUSB_DFU_MODE_DFU #define CFG_TUD_DFU_RUNTIME CONFIG_TINYUSB_DFU_MODE_DFU_RUNTIME #define CFG_TUD_BTH CONFIG_TINYUSB_BTH_ENABLED // NCM NET Mode NTB buffers configuration #define CFG_TUD_NCM_OUT_NTB_N CONFIG_TINYUSB_NCM_OUT_NTB_BUFFS_COUNT #define CFG_TUD_NCM_IN_NTB_N CONFIG_TINYUSB_NCM_IN_NTB_BUFFS_COUNT #define CFG_TUD_NCM_OUT_NTB_MAX_SIZE CONFIG_TINYUSB_NCM_OUT_NTB_BUFF_MAX_SIZE #define CFG_TUD_NCM_IN_NTB_MAX_SIZE CONFIG_TINYUSB_NCM_IN_NTB_BUFF_MAX_SIZE #ifdef __cplusplus } #endif