mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
100 lines
2.7 KiB
C
100 lines
2.7 KiB
C
|
/*
|
||
|
* Copyright (C) 2022 Gunar Schorcht
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @ingroup pkg_tinyusb
|
||
|
* @ingroup cpu_stm32
|
||
|
* @{
|
||
|
*
|
||
|
* @file
|
||
|
* @brief STM32 specific default configurations for tinyUSB
|
||
|
*
|
||
|
* @author Gunar Schorcht <gunar@schorcht.net>
|
||
|
*/
|
||
|
|
||
|
#ifndef TINYUSB_HW_DEFAULTS_H
|
||
|
#define TINYUSB_HW_DEFAULTS_H
|
||
|
|
||
|
#include "periph_conf.h"
|
||
|
|
||
|
#if !DOXYGEN
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/**
|
||
|
* @name Definition of ports used by tinyUSB host and device stack
|
||
|
*
|
||
|
* The tinyUSB device driver used for the STM32 USB-OTG controller supposes
|
||
|
* that the USB-OTG-FS port is port 0 and the USB-OTG-HS port is port 1.
|
||
|
* Therefore, the following default definitions can be used:
|
||
|
*
|
||
|
* - If both USB OTG FS and USB OTG HS ports are used, the device stack uses
|
||
|
* port 0 and the host stack uses port 1.
|
||
|
* - If only USB OTG HS is used, both the device and the host stack use port 1.
|
||
|
* - In all other cases, both the device and the host stack use port 0.
|
||
|
* This also applies if only the USB FS controller is used.
|
||
|
*
|
||
|
* @{
|
||
|
*/
|
||
|
#if defined(DWC2_USB_OTG_HS_ENABLED) && defined(DWC2_USB_OTG_FS_ENABLED)
|
||
|
|
||
|
#ifndef TINYUSB_TUD_RHPORT
|
||
|
#define TINYUSB_TUD_RHPORT 0
|
||
|
#endif
|
||
|
|
||
|
#ifndef TINYUSB_TUH_RHPORT
|
||
|
#define TINYUSB_TUH_RHPORT 1
|
||
|
#endif
|
||
|
|
||
|
#elif defined(DWC2_USB_OTG_HS_ENABLED)
|
||
|
|
||
|
#ifndef TINYUSB_TUD_RHPORT
|
||
|
#define TINYUSB_TUD_RHPORT 1
|
||
|
#endif
|
||
|
|
||
|
#ifndef TINYUSB_TUH_RHPORT
|
||
|
#define TINYUSB_TUH_RHPORT 1
|
||
|
#endif
|
||
|
|
||
|
#else
|
||
|
|
||
|
#ifndef TINYUSB_TUD_RHPORT
|
||
|
#define TINYUSB_TUD_RHPORT 0
|
||
|
#endif
|
||
|
|
||
|
#ifndef TINYUSB_TUH_RHPORT
|
||
|
#define TINYUSB_TUH_RHPORT 0
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
/** @} */
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* !DOXYGEN */
|
||
|
#endif /* TINYUSB_HW_DEFAULTS_H */
|
||
|
/** @} */
|