The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
Kojto
Date:
Wed Nov 25 13:21:40 2015 +0000
Revision:
110:165afa46840b
Parent:
106:ba1f97679dad
Child:
122:f9eeca106725
Release 110  of the mbed library

Changes:
- new platforms - STM32F410R, DISCO_F429ZI, DISCO_F469NI
- Nucleo L476 - gcc and uvision template
- k22,k64f targets - ADC channels A addition
- EFM32 - bugfixes in sleep, serial and spi
- Delta DFCM NNN40 - pinnames update

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 86:04dd9b1680ae 1 /**
bogdanm 86:04dd9b1680ae 2 ******************************************************************************
bogdanm 86:04dd9b1680ae 3 * @file stm32f4xx_ll_usb.h
bogdanm 86:04dd9b1680ae 4 * @author MCD Application Team
Kojto 110:165afa46840b 5 * @version V1.4.1
Kojto 110:165afa46840b 6 * @date 09-October-2015
bogdanm 86:04dd9b1680ae 7 * @brief Header file of USB Core HAL module.
bogdanm 86:04dd9b1680ae 8 ******************************************************************************
bogdanm 86:04dd9b1680ae 9 * @attention
bogdanm 86:04dd9b1680ae 10 *
Kojto 99:dbbf35b96557 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
bogdanm 86:04dd9b1680ae 12 *
bogdanm 86:04dd9b1680ae 13 * Redistribution and use in source and binary forms, with or without modification,
bogdanm 86:04dd9b1680ae 14 * are permitted provided that the following conditions are met:
bogdanm 86:04dd9b1680ae 15 * 1. Redistributions of source code must retain the above copyright notice,
bogdanm 86:04dd9b1680ae 16 * this list of conditions and the following disclaimer.
bogdanm 86:04dd9b1680ae 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
bogdanm 86:04dd9b1680ae 18 * this list of conditions and the following disclaimer in the documentation
bogdanm 86:04dd9b1680ae 19 * and/or other materials provided with the distribution.
bogdanm 86:04dd9b1680ae 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bogdanm 86:04dd9b1680ae 21 * may be used to endorse or promote products derived from this software
bogdanm 86:04dd9b1680ae 22 * without specific prior written permission.
bogdanm 86:04dd9b1680ae 23 *
bogdanm 86:04dd9b1680ae 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bogdanm 86:04dd9b1680ae 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bogdanm 86:04dd9b1680ae 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 86:04dd9b1680ae 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bogdanm 86:04dd9b1680ae 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bogdanm 86:04dd9b1680ae 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bogdanm 86:04dd9b1680ae 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bogdanm 86:04dd9b1680ae 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bogdanm 86:04dd9b1680ae 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bogdanm 86:04dd9b1680ae 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bogdanm 86:04dd9b1680ae 34 *
bogdanm 86:04dd9b1680ae 35 ******************************************************************************
bogdanm 86:04dd9b1680ae 36 */
bogdanm 86:04dd9b1680ae 37
bogdanm 86:04dd9b1680ae 38 /* Define to prevent recursive inclusion -------------------------------------*/
bogdanm 86:04dd9b1680ae 39 #ifndef __STM32F4xx_LL_USB_H
bogdanm 86:04dd9b1680ae 40 #define __STM32F4xx_LL_USB_H
bogdanm 86:04dd9b1680ae 41
bogdanm 86:04dd9b1680ae 42 #ifdef __cplusplus
bogdanm 86:04dd9b1680ae 43 extern "C" {
bogdanm 86:04dd9b1680ae 44 #endif
Kojto 110:165afa46840b 45 #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx) || \
Kojto 110:165afa46840b 46 defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) || \
Kojto 110:165afa46840b 47 defined(STM32F401xC) || defined(STM32F401xE) || defined(STM32F411xE) || defined(STM32F446xx) || \
Kojto 110:165afa46840b 48 defined(STM32F469xx) || defined(STM32F479xx)
bogdanm 86:04dd9b1680ae 49 /* Includes ------------------------------------------------------------------*/
bogdanm 86:04dd9b1680ae 50 #include "stm32f4xx_hal_def.h"
bogdanm 86:04dd9b1680ae 51
bogdanm 86:04dd9b1680ae 52 /** @addtogroup STM32F4xx_HAL
bogdanm 86:04dd9b1680ae 53 * @{
bogdanm 86:04dd9b1680ae 54 */
bogdanm 86:04dd9b1680ae 55
bogdanm 86:04dd9b1680ae 56 /** @addtogroup USB_Core
bogdanm 86:04dd9b1680ae 57 * @{
bogdanm 86:04dd9b1680ae 58 */
bogdanm 86:04dd9b1680ae 59
bogdanm 86:04dd9b1680ae 60 /* Exported types ------------------------------------------------------------*/
bogdanm 86:04dd9b1680ae 61
bogdanm 86:04dd9b1680ae 62 /**
bogdanm 86:04dd9b1680ae 63 * @brief USB Mode definition
bogdanm 86:04dd9b1680ae 64 */
bogdanm 86:04dd9b1680ae 65 typedef enum
bogdanm 86:04dd9b1680ae 66 {
bogdanm 86:04dd9b1680ae 67 USB_OTG_DEVICE_MODE = 0,
bogdanm 86:04dd9b1680ae 68 USB_OTG_HOST_MODE = 1,
bogdanm 86:04dd9b1680ae 69 USB_OTG_DRD_MODE = 2
bogdanm 86:04dd9b1680ae 70
bogdanm 86:04dd9b1680ae 71 }USB_OTG_ModeTypeDef;
bogdanm 86:04dd9b1680ae 72
bogdanm 86:04dd9b1680ae 73 /**
bogdanm 86:04dd9b1680ae 74 * @brief URB States definition
bogdanm 86:04dd9b1680ae 75 */
bogdanm 86:04dd9b1680ae 76 typedef enum {
bogdanm 86:04dd9b1680ae 77 URB_IDLE = 0,
bogdanm 86:04dd9b1680ae 78 URB_DONE,
bogdanm 86:04dd9b1680ae 79 URB_NOTREADY,
bogdanm 86:04dd9b1680ae 80 URB_NYET,
bogdanm 86:04dd9b1680ae 81 URB_ERROR,
bogdanm 86:04dd9b1680ae 82 URB_STALL
bogdanm 86:04dd9b1680ae 83
bogdanm 86:04dd9b1680ae 84 }USB_OTG_URBStateTypeDef;
bogdanm 86:04dd9b1680ae 85
bogdanm 86:04dd9b1680ae 86 /**
bogdanm 86:04dd9b1680ae 87 * @brief Host channel States definition
bogdanm 86:04dd9b1680ae 88 */
bogdanm 86:04dd9b1680ae 89 typedef enum {
bogdanm 86:04dd9b1680ae 90 HC_IDLE = 0,
bogdanm 86:04dd9b1680ae 91 HC_XFRC,
bogdanm 86:04dd9b1680ae 92 HC_HALTED,
bogdanm 86:04dd9b1680ae 93 HC_NAK,
bogdanm 86:04dd9b1680ae 94 HC_NYET,
bogdanm 86:04dd9b1680ae 95 HC_STALL,
bogdanm 86:04dd9b1680ae 96 HC_XACTERR,
bogdanm 86:04dd9b1680ae 97 HC_BBLERR,
bogdanm 86:04dd9b1680ae 98 HC_DATATGLERR
bogdanm 86:04dd9b1680ae 99
bogdanm 86:04dd9b1680ae 100 }USB_OTG_HCStateTypeDef;
bogdanm 86:04dd9b1680ae 101
bogdanm 86:04dd9b1680ae 102 /**
bogdanm 86:04dd9b1680ae 103 * @brief PCD Initialization Structure definition
bogdanm 86:04dd9b1680ae 104 */
bogdanm 86:04dd9b1680ae 105 typedef struct
bogdanm 86:04dd9b1680ae 106 {
bogdanm 86:04dd9b1680ae 107 uint32_t dev_endpoints; /*!< Device Endpoints number.
bogdanm 86:04dd9b1680ae 108 This parameter depends on the used USB core.
bogdanm 86:04dd9b1680ae 109 This parameter must be a number between Min_Data = 1 and Max_Data = 15 */
bogdanm 86:04dd9b1680ae 110
bogdanm 86:04dd9b1680ae 111 uint32_t Host_channels; /*!< Host Channels number.
bogdanm 86:04dd9b1680ae 112 This parameter Depends on the used USB core.
bogdanm 86:04dd9b1680ae 113 This parameter must be a number between Min_Data = 1 and Max_Data = 15 */
bogdanm 86:04dd9b1680ae 114
bogdanm 86:04dd9b1680ae 115 uint32_t speed; /*!< USB Core speed.
bogdanm 86:04dd9b1680ae 116 This parameter can be any value of @ref USB_Core_Speed_ */
bogdanm 86:04dd9b1680ae 117
bogdanm 86:04dd9b1680ae 118 uint32_t dma_enable; /*!< Enable or disable of the USB embedded DMA. */
bogdanm 86:04dd9b1680ae 119
bogdanm 86:04dd9b1680ae 120 uint32_t ep0_mps; /*!< Set the Endpoint 0 Max Packet size.
bogdanm 86:04dd9b1680ae 121 This parameter can be any value of @ref USB_EP0_MPS_ */
bogdanm 86:04dd9b1680ae 122
bogdanm 86:04dd9b1680ae 123 uint32_t phy_itface; /*!< Select the used PHY interface.
bogdanm 86:04dd9b1680ae 124 This parameter can be any value of @ref USB_Core_PHY_ */
bogdanm 86:04dd9b1680ae 125
bogdanm 86:04dd9b1680ae 126 uint32_t Sof_enable; /*!< Enable or disable the output of the SOF signal. */
bogdanm 86:04dd9b1680ae 127
Kojto 99:dbbf35b96557 128 uint32_t low_power_enable; /*!< Enable or disable the low power mode. */
Kojto 99:dbbf35b96557 129
Kojto 99:dbbf35b96557 130 uint32_t lpm_enable; /*!< Enable or disable Link Power Management. */
Kojto 110:165afa46840b 131
Kojto 110:165afa46840b 132 uint32_t battery_charging_enable; /*!< Enable or disable Battery charging. */
bogdanm 86:04dd9b1680ae 133
bogdanm 86:04dd9b1680ae 134 uint32_t vbus_sensing_enable; /*!< Enable or disable the VBUS Sensing feature. */
bogdanm 86:04dd9b1680ae 135
bogdanm 86:04dd9b1680ae 136 uint32_t use_dedicated_ep1; /*!< Enable or disable the use of the dedicated EP1 interrupt. */
bogdanm 86:04dd9b1680ae 137
bogdanm 86:04dd9b1680ae 138 uint32_t use_external_vbus; /*!< Enable or disable the use of the external VBUS. */
bogdanm 86:04dd9b1680ae 139
bogdanm 86:04dd9b1680ae 140 }USB_OTG_CfgTypeDef;
bogdanm 86:04dd9b1680ae 141
bogdanm 86:04dd9b1680ae 142 typedef struct
bogdanm 86:04dd9b1680ae 143 {
bogdanm 86:04dd9b1680ae 144 uint8_t num; /*!< Endpoint number
bogdanm 86:04dd9b1680ae 145 This parameter must be a number between Min_Data = 1 and Max_Data = 15 */
bogdanm 86:04dd9b1680ae 146
bogdanm 86:04dd9b1680ae 147 uint8_t is_in; /*!< Endpoint direction
bogdanm 86:04dd9b1680ae 148 This parameter must be a number between Min_Data = 0 and Max_Data = 1 */
bogdanm 86:04dd9b1680ae 149
bogdanm 86:04dd9b1680ae 150 uint8_t is_stall; /*!< Endpoint stall condition
bogdanm 86:04dd9b1680ae 151 This parameter must be a number between Min_Data = 0 and Max_Data = 1 */
bogdanm 86:04dd9b1680ae 152
bogdanm 86:04dd9b1680ae 153 uint8_t type; /*!< Endpoint type
bogdanm 86:04dd9b1680ae 154 This parameter can be any value of @ref USB_EP_Type_ */
bogdanm 86:04dd9b1680ae 155
bogdanm 86:04dd9b1680ae 156 uint8_t data_pid_start; /*!< Initial data PID
bogdanm 86:04dd9b1680ae 157 This parameter must be a number between Min_Data = 0 and Max_Data = 1 */
bogdanm 86:04dd9b1680ae 158
bogdanm 86:04dd9b1680ae 159 uint8_t even_odd_frame; /*!< IFrame parity
bogdanm 86:04dd9b1680ae 160 This parameter must be a number between Min_Data = 0 and Max_Data = 1 */
bogdanm 86:04dd9b1680ae 161
bogdanm 86:04dd9b1680ae 162 uint16_t tx_fifo_num; /*!< Transmission FIFO number
bogdanm 86:04dd9b1680ae 163 This parameter must be a number between Min_Data = 1 and Max_Data = 15 */
bogdanm 86:04dd9b1680ae 164
bogdanm 86:04dd9b1680ae 165 uint32_t maxpacket; /*!< Endpoint Max packet size
bogdanm 86:04dd9b1680ae 166 This parameter must be a number between Min_Data = 0 and Max_Data = 64KB */
bogdanm 86:04dd9b1680ae 167
bogdanm 86:04dd9b1680ae 168 uint8_t *xfer_buff; /*!< Pointer to transfer buffer */
bogdanm 86:04dd9b1680ae 169
bogdanm 86:04dd9b1680ae 170 uint32_t dma_addr; /*!< 32 bits aligned transfer buffer address */
bogdanm 86:04dd9b1680ae 171
bogdanm 86:04dd9b1680ae 172 uint32_t xfer_len; /*!< Current transfer length */
bogdanm 86:04dd9b1680ae 173
bogdanm 86:04dd9b1680ae 174 uint32_t xfer_count; /*!< Partial transfer length in case of multi packet transfer */
bogdanm 86:04dd9b1680ae 175
bogdanm 86:04dd9b1680ae 176 }USB_OTG_EPTypeDef;
bogdanm 86:04dd9b1680ae 177
bogdanm 86:04dd9b1680ae 178 typedef struct
bogdanm 86:04dd9b1680ae 179 {
bogdanm 86:04dd9b1680ae 180 uint8_t dev_addr ; /*!< USB device address.
bogdanm 86:04dd9b1680ae 181 This parameter must be a number between Min_Data = 1 and Max_Data = 255 */
bogdanm 86:04dd9b1680ae 182
bogdanm 86:04dd9b1680ae 183 uint8_t ch_num; /*!< Host channel number.
bogdanm 86:04dd9b1680ae 184 This parameter must be a number between Min_Data = 1 and Max_Data = 15 */
bogdanm 86:04dd9b1680ae 185
bogdanm 86:04dd9b1680ae 186 uint8_t ep_num; /*!< Endpoint number.
bogdanm 86:04dd9b1680ae 187 This parameter must be a number between Min_Data = 1 and Max_Data = 15 */
bogdanm 86:04dd9b1680ae 188
bogdanm 86:04dd9b1680ae 189 uint8_t ep_is_in; /*!< Endpoint direction
bogdanm 86:04dd9b1680ae 190 This parameter must be a number between Min_Data = 0 and Max_Data = 1 */
bogdanm 86:04dd9b1680ae 191
bogdanm 86:04dd9b1680ae 192 uint8_t speed; /*!< USB Host speed.
bogdanm 86:04dd9b1680ae 193 This parameter can be any value of @ref USB_Core_Speed_ */
bogdanm 86:04dd9b1680ae 194
bogdanm 86:04dd9b1680ae 195 uint8_t do_ping; /*!< Enable or disable the use of the PING protocol for HS mode. */
bogdanm 86:04dd9b1680ae 196
bogdanm 86:04dd9b1680ae 197 uint8_t process_ping; /*!< Execute the PING protocol for HS mode. */
bogdanm 86:04dd9b1680ae 198
bogdanm 86:04dd9b1680ae 199 uint8_t ep_type; /*!< Endpoint Type.
bogdanm 86:04dd9b1680ae 200 This parameter can be any value of @ref USB_EP_Type_ */
bogdanm 86:04dd9b1680ae 201
bogdanm 86:04dd9b1680ae 202 uint16_t max_packet; /*!< Endpoint Max packet size.
bogdanm 86:04dd9b1680ae 203 This parameter must be a number between Min_Data = 0 and Max_Data = 64KB */
bogdanm 86:04dd9b1680ae 204
bogdanm 86:04dd9b1680ae 205 uint8_t data_pid; /*!< Initial data PID.
bogdanm 86:04dd9b1680ae 206 This parameter must be a number between Min_Data = 0 and Max_Data = 1 */
bogdanm 86:04dd9b1680ae 207
bogdanm 86:04dd9b1680ae 208 uint8_t *xfer_buff; /*!< Pointer to transfer buffer. */
bogdanm 86:04dd9b1680ae 209
bogdanm 86:04dd9b1680ae 210 uint32_t xfer_len; /*!< Current transfer length. */
bogdanm 86:04dd9b1680ae 211
bogdanm 86:04dd9b1680ae 212 uint32_t xfer_count; /*!< Partial transfer length in case of multi packet transfer. */
bogdanm 86:04dd9b1680ae 213
bogdanm 86:04dd9b1680ae 214 uint8_t toggle_in; /*!< IN transfer current toggle flag.
bogdanm 86:04dd9b1680ae 215 This parameter must be a number between Min_Data = 0 and Max_Data = 1 */
bogdanm 86:04dd9b1680ae 216
bogdanm 86:04dd9b1680ae 217 uint8_t toggle_out; /*!< OUT transfer current toggle flag
bogdanm 86:04dd9b1680ae 218 This parameter must be a number between Min_Data = 0 and Max_Data = 1 */
bogdanm 86:04dd9b1680ae 219
bogdanm 86:04dd9b1680ae 220 uint32_t dma_addr; /*!< 32 bits aligned transfer buffer address. */
bogdanm 86:04dd9b1680ae 221
bogdanm 86:04dd9b1680ae 222 uint32_t ErrCnt; /*!< Host channel error count.*/
bogdanm 86:04dd9b1680ae 223
bogdanm 86:04dd9b1680ae 224 USB_OTG_URBStateTypeDef urb_state; /*!< URB state.
bogdanm 86:04dd9b1680ae 225 This parameter can be any value of @ref USB_OTG_URBStateTypeDef */
bogdanm 86:04dd9b1680ae 226
bogdanm 86:04dd9b1680ae 227 USB_OTG_HCStateTypeDef state; /*!< Host Channel state.
bogdanm 86:04dd9b1680ae 228 This parameter can be any value of @ref USB_OTG_HCStateTypeDef */
bogdanm 86:04dd9b1680ae 229
bogdanm 86:04dd9b1680ae 230 }USB_OTG_HCTypeDef;
bogdanm 86:04dd9b1680ae 231
bogdanm 86:04dd9b1680ae 232 /* Exported constants --------------------------------------------------------*/
bogdanm 86:04dd9b1680ae 233
Kojto 99:dbbf35b96557 234 /** @defgroup PCD_Exported_Constants PCD Exported Constants
bogdanm 86:04dd9b1680ae 235 * @{
bogdanm 86:04dd9b1680ae 236 */
bogdanm 86:04dd9b1680ae 237
Kojto 99:dbbf35b96557 238 /** @defgroup USB_Core_Mode_ USB Core Mode
bogdanm 86:04dd9b1680ae 239 * @{
bogdanm 86:04dd9b1680ae 240 */
bogdanm 86:04dd9b1680ae 241 #define USB_OTG_MODE_DEVICE 0
bogdanm 86:04dd9b1680ae 242 #define USB_OTG_MODE_HOST 1
bogdanm 86:04dd9b1680ae 243 #define USB_OTG_MODE_DRD 2
bogdanm 86:04dd9b1680ae 244 /**
bogdanm 86:04dd9b1680ae 245 * @}
bogdanm 86:04dd9b1680ae 246 */
bogdanm 86:04dd9b1680ae 247
Kojto 99:dbbf35b96557 248 /** @defgroup USB_Core_Speed_ USB Core Speed
bogdanm 86:04dd9b1680ae 249 * @{
bogdanm 86:04dd9b1680ae 250 */
bogdanm 86:04dd9b1680ae 251 #define USB_OTG_SPEED_HIGH 0
bogdanm 86:04dd9b1680ae 252 #define USB_OTG_SPEED_HIGH_IN_FULL 1
bogdanm 86:04dd9b1680ae 253 #define USB_OTG_SPEED_LOW 2
bogdanm 86:04dd9b1680ae 254 #define USB_OTG_SPEED_FULL 3
bogdanm 86:04dd9b1680ae 255 /**
bogdanm 86:04dd9b1680ae 256 * @}
bogdanm 86:04dd9b1680ae 257 */
bogdanm 86:04dd9b1680ae 258
Kojto 99:dbbf35b96557 259 /** @defgroup USB_Core_PHY_ USB Core PHY
bogdanm 86:04dd9b1680ae 260 * @{
bogdanm 86:04dd9b1680ae 261 */
bogdanm 86:04dd9b1680ae 262 #define USB_OTG_ULPI_PHY 1
bogdanm 86:04dd9b1680ae 263 #define USB_OTG_EMBEDDED_PHY 2
bogdanm 86:04dd9b1680ae 264 /**
bogdanm 86:04dd9b1680ae 265 * @}
bogdanm 86:04dd9b1680ae 266 */
bogdanm 86:04dd9b1680ae 267
Kojto 99:dbbf35b96557 268 /** @defgroup USB_Core_MPS_ USB Core MPS
bogdanm 86:04dd9b1680ae 269 * @{
bogdanm 86:04dd9b1680ae 270 */
bogdanm 86:04dd9b1680ae 271 #define USB_OTG_HS_MAX_PACKET_SIZE 512
bogdanm 86:04dd9b1680ae 272 #define USB_OTG_FS_MAX_PACKET_SIZE 64
bogdanm 86:04dd9b1680ae 273 #define USB_OTG_MAX_EP0_SIZE 64
bogdanm 86:04dd9b1680ae 274 /**
bogdanm 86:04dd9b1680ae 275 * @}
bogdanm 86:04dd9b1680ae 276 */
bogdanm 86:04dd9b1680ae 277
Kojto 99:dbbf35b96557 278 /** @defgroup USB_Core_Phy_Frequency_ USB Core Phy Frequency
bogdanm 86:04dd9b1680ae 279 * @{
bogdanm 86:04dd9b1680ae 280 */
bogdanm 86:04dd9b1680ae 281 #define DSTS_ENUMSPD_HS_PHY_30MHZ_OR_60MHZ (0 << 1)
bogdanm 86:04dd9b1680ae 282 #define DSTS_ENUMSPD_FS_PHY_30MHZ_OR_60MHZ (1 << 1)
bogdanm 86:04dd9b1680ae 283 #define DSTS_ENUMSPD_LS_PHY_6MHZ (2 << 1)
bogdanm 86:04dd9b1680ae 284 #define DSTS_ENUMSPD_FS_PHY_48MHZ (3 << 1)
bogdanm 86:04dd9b1680ae 285 /**
bogdanm 86:04dd9b1680ae 286 * @}
bogdanm 86:04dd9b1680ae 287 */
bogdanm 86:04dd9b1680ae 288
Kojto 99:dbbf35b96557 289 /** @defgroup USB_CORE_Frame_Interval_ USB CORE Frame Interval
bogdanm 86:04dd9b1680ae 290 * @{
bogdanm 86:04dd9b1680ae 291 */
bogdanm 86:04dd9b1680ae 292 #define DCFG_FRAME_INTERVAL_80 0
bogdanm 86:04dd9b1680ae 293 #define DCFG_FRAME_INTERVAL_85 1
bogdanm 86:04dd9b1680ae 294 #define DCFG_FRAME_INTERVAL_90 2
bogdanm 86:04dd9b1680ae 295 #define DCFG_FRAME_INTERVAL_95 3
bogdanm 86:04dd9b1680ae 296 /**
bogdanm 86:04dd9b1680ae 297 * @}
bogdanm 86:04dd9b1680ae 298 */
bogdanm 86:04dd9b1680ae 299
Kojto 99:dbbf35b96557 300 /** @defgroup USB_EP0_MPS_ USB EP0 MPS
bogdanm 86:04dd9b1680ae 301 * @{
bogdanm 86:04dd9b1680ae 302 */
bogdanm 86:04dd9b1680ae 303 #define DEP0CTL_MPS_64 0
bogdanm 86:04dd9b1680ae 304 #define DEP0CTL_MPS_32 1
bogdanm 86:04dd9b1680ae 305 #define DEP0CTL_MPS_16 2
bogdanm 86:04dd9b1680ae 306 #define DEP0CTL_MPS_8 3
bogdanm 86:04dd9b1680ae 307 /**
bogdanm 86:04dd9b1680ae 308 * @}
bogdanm 86:04dd9b1680ae 309 */
bogdanm 86:04dd9b1680ae 310
Kojto 99:dbbf35b96557 311 /** @defgroup USB_EP_Speed_ USB EP Speed
bogdanm 86:04dd9b1680ae 312 * @{
bogdanm 86:04dd9b1680ae 313 */
bogdanm 86:04dd9b1680ae 314 #define EP_SPEED_LOW 0
bogdanm 86:04dd9b1680ae 315 #define EP_SPEED_FULL 1
bogdanm 86:04dd9b1680ae 316 #define EP_SPEED_HIGH 2
bogdanm 86:04dd9b1680ae 317 /**
bogdanm 86:04dd9b1680ae 318 * @}
bogdanm 86:04dd9b1680ae 319 */
bogdanm 86:04dd9b1680ae 320
Kojto 99:dbbf35b96557 321 /** @defgroup USB_EP_Type_ USB EP Type
bogdanm 86:04dd9b1680ae 322 * @{
bogdanm 86:04dd9b1680ae 323 */
bogdanm 86:04dd9b1680ae 324 #define EP_TYPE_CTRL 0
bogdanm 86:04dd9b1680ae 325 #define EP_TYPE_ISOC 1
bogdanm 86:04dd9b1680ae 326 #define EP_TYPE_BULK 2
bogdanm 86:04dd9b1680ae 327 #define EP_TYPE_INTR 3
bogdanm 86:04dd9b1680ae 328 #define EP_TYPE_MSK 3
bogdanm 86:04dd9b1680ae 329 /**
bogdanm 86:04dd9b1680ae 330 * @}
bogdanm 86:04dd9b1680ae 331 */
bogdanm 86:04dd9b1680ae 332
Kojto 99:dbbf35b96557 333 /** @defgroup USB_STS_Defines_ USB STS Defines
bogdanm 86:04dd9b1680ae 334 * @{
bogdanm 86:04dd9b1680ae 335 */
bogdanm 86:04dd9b1680ae 336 #define STS_GOUT_NAK 1
bogdanm 86:04dd9b1680ae 337 #define STS_DATA_UPDT 2
bogdanm 86:04dd9b1680ae 338 #define STS_XFER_COMP 3
bogdanm 86:04dd9b1680ae 339 #define STS_SETUP_COMP 4
bogdanm 86:04dd9b1680ae 340 #define STS_SETUP_UPDT 6
bogdanm 86:04dd9b1680ae 341 /**
bogdanm 86:04dd9b1680ae 342 * @}
bogdanm 86:04dd9b1680ae 343 */
bogdanm 86:04dd9b1680ae 344
Kojto 99:dbbf35b96557 345 /** @defgroup HCFG_SPEED_Defines_ HCFG SPEED Defines
bogdanm 86:04dd9b1680ae 346 * @{
bogdanm 86:04dd9b1680ae 347 */
bogdanm 86:04dd9b1680ae 348 #define HCFG_30_60_MHZ 0
bogdanm 86:04dd9b1680ae 349 #define HCFG_48_MHZ 1
bogdanm 86:04dd9b1680ae 350 #define HCFG_6_MHZ 2
bogdanm 86:04dd9b1680ae 351 /**
bogdanm 86:04dd9b1680ae 352 * @}
bogdanm 86:04dd9b1680ae 353 */
bogdanm 86:04dd9b1680ae 354
Kojto 99:dbbf35b96557 355 /** @defgroup HPRT0_PRTSPD_SPEED_Defines_ HPRT0 PRTSPD SPEED Defines
bogdanm 86:04dd9b1680ae 356 * @{
bogdanm 86:04dd9b1680ae 357 */
bogdanm 86:04dd9b1680ae 358 #define HPRT0_PRTSPD_HIGH_SPEED 0
bogdanm 86:04dd9b1680ae 359 #define HPRT0_PRTSPD_FULL_SPEED 1
bogdanm 86:04dd9b1680ae 360 #define HPRT0_PRTSPD_LOW_SPEED 2
bogdanm 86:04dd9b1680ae 361 /**
bogdanm 86:04dd9b1680ae 362 * @}
bogdanm 86:04dd9b1680ae 363 */
bogdanm 86:04dd9b1680ae 364
bogdanm 86:04dd9b1680ae 365 #define HCCHAR_CTRL 0
bogdanm 86:04dd9b1680ae 366 #define HCCHAR_ISOC 1
bogdanm 86:04dd9b1680ae 367 #define HCCHAR_BULK 2
bogdanm 86:04dd9b1680ae 368 #define HCCHAR_INTR 3
bogdanm 86:04dd9b1680ae 369
bogdanm 86:04dd9b1680ae 370 #define HC_PID_DATA0 0
bogdanm 86:04dd9b1680ae 371 #define HC_PID_DATA2 1
bogdanm 86:04dd9b1680ae 372 #define HC_PID_DATA1 2
bogdanm 86:04dd9b1680ae 373 #define HC_PID_SETUP 3
bogdanm 86:04dd9b1680ae 374
bogdanm 86:04dd9b1680ae 375 #define GRXSTS_PKTSTS_IN 2
bogdanm 86:04dd9b1680ae 376 #define GRXSTS_PKTSTS_IN_XFER_COMP 3
bogdanm 86:04dd9b1680ae 377 #define GRXSTS_PKTSTS_DATA_TOGGLE_ERR 5
bogdanm 86:04dd9b1680ae 378 #define GRXSTS_PKTSTS_CH_HALTED 7
bogdanm 86:04dd9b1680ae 379
bogdanm 86:04dd9b1680ae 380 #define USBx_PCGCCTL *(__IO uint32_t *)((uint32_t)USBx + USB_OTG_PCGCCTL_BASE)
bogdanm 86:04dd9b1680ae 381 #define USBx_HPRT0 *(__IO uint32_t *)((uint32_t)USBx + USB_OTG_HOST_PORT_BASE)
bogdanm 86:04dd9b1680ae 382
bogdanm 86:04dd9b1680ae 383 #define USBx_DEVICE ((USB_OTG_DeviceTypeDef *)((uint32_t )USBx + USB_OTG_DEVICE_BASE))
bogdanm 86:04dd9b1680ae 384 #define USBx_INEP(i) ((USB_OTG_INEndpointTypeDef *)((uint32_t)USBx + USB_OTG_IN_ENDPOINT_BASE + (i)*USB_OTG_EP_REG_SIZE))
bogdanm 86:04dd9b1680ae 385 #define USBx_OUTEP(i) ((USB_OTG_OUTEndpointTypeDef *)((uint32_t)USBx + USB_OTG_OUT_ENDPOINT_BASE + (i)*USB_OTG_EP_REG_SIZE))
bogdanm 86:04dd9b1680ae 386 #define USBx_DFIFO(i) *(__IO uint32_t *)((uint32_t)USBx + USB_OTG_FIFO_BASE + (i) * USB_OTG_FIFO_SIZE)
bogdanm 86:04dd9b1680ae 387
bogdanm 86:04dd9b1680ae 388 #define USBx_HOST ((USB_OTG_HostTypeDef *)((uint32_t )USBx + USB_OTG_HOST_BASE))
bogdanm 86:04dd9b1680ae 389 #define USBx_HC(i) ((USB_OTG_HostChannelTypeDef *)((uint32_t)USBx + USB_OTG_HOST_CHANNEL_BASE + (i)*USB_OTG_HOST_CHANNEL_SIZE))
Kojto 99:dbbf35b96557 390 /**
Kojto 99:dbbf35b96557 391 * @}
Kojto 99:dbbf35b96557 392 */
bogdanm 86:04dd9b1680ae 393 /* Exported macro ------------------------------------------------------------*/
bogdanm 86:04dd9b1680ae 394 #define USB_MASK_INTERRUPT(__INSTANCE__, __INTERRUPT__) ((__INSTANCE__)->GINTMSK &= ~(__INTERRUPT__))
bogdanm 86:04dd9b1680ae 395 #define USB_UNMASK_INTERRUPT(__INSTANCE__, __INTERRUPT__) ((__INSTANCE__)->GINTMSK |= (__INTERRUPT__))
bogdanm 86:04dd9b1680ae 396
bogdanm 86:04dd9b1680ae 397 #define CLEAR_IN_EP_INTR(__EPNUM__, __INTERRUPT__) (USBx_INEP(__EPNUM__)->DIEPINT = (__INTERRUPT__))
bogdanm 86:04dd9b1680ae 398 #define CLEAR_OUT_EP_INTR(__EPNUM__, __INTERRUPT__) (USBx_OUTEP(__EPNUM__)->DOEPINT = (__INTERRUPT__))
bogdanm 86:04dd9b1680ae 399
bogdanm 86:04dd9b1680ae 400 /* Exported functions --------------------------------------------------------*/
bogdanm 86:04dd9b1680ae 401 HAL_StatusTypeDef USB_CoreInit(USB_OTG_GlobalTypeDef *USBx, USB_OTG_CfgTypeDef Init);
bogdanm 86:04dd9b1680ae 402 HAL_StatusTypeDef USB_DevInit(USB_OTG_GlobalTypeDef *USBx, USB_OTG_CfgTypeDef Init);
bogdanm 86:04dd9b1680ae 403 HAL_StatusTypeDef USB_EnableGlobalInt(USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 404 HAL_StatusTypeDef USB_DisableGlobalInt(USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 405 HAL_StatusTypeDef USB_SetCurrentMode(USB_OTG_GlobalTypeDef *USBx , USB_OTG_ModeTypeDef mode);
bogdanm 86:04dd9b1680ae 406 HAL_StatusTypeDef USB_SetDevSpeed(USB_OTG_GlobalTypeDef *USBx , uint8_t speed);
bogdanm 86:04dd9b1680ae 407 HAL_StatusTypeDef USB_FlushRxFifo (USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 408 HAL_StatusTypeDef USB_FlushTxFifo (USB_OTG_GlobalTypeDef *USBx, uint32_t num );
bogdanm 86:04dd9b1680ae 409 HAL_StatusTypeDef USB_ActivateEndpoint(USB_OTG_GlobalTypeDef *USBx, USB_OTG_EPTypeDef *ep);
bogdanm 86:04dd9b1680ae 410 HAL_StatusTypeDef USB_DeactivateEndpoint(USB_OTG_GlobalTypeDef *USBx, USB_OTG_EPTypeDef *ep);
bogdanm 86:04dd9b1680ae 411 HAL_StatusTypeDef USB_ActivateDedicatedEndpoint(USB_OTG_GlobalTypeDef *USBx, USB_OTG_EPTypeDef *ep);
bogdanm 86:04dd9b1680ae 412 HAL_StatusTypeDef USB_DeactivateDedicatedEndpoint(USB_OTG_GlobalTypeDef *USBx, USB_OTG_EPTypeDef *ep);
bogdanm 86:04dd9b1680ae 413 HAL_StatusTypeDef USB_EPStartXfer(USB_OTG_GlobalTypeDef *USBx , USB_OTG_EPTypeDef *ep, uint8_t dma);
bogdanm 86:04dd9b1680ae 414 HAL_StatusTypeDef USB_EP0StartXfer(USB_OTG_GlobalTypeDef *USBx , USB_OTG_EPTypeDef *ep, uint8_t dma);
bogdanm 86:04dd9b1680ae 415 HAL_StatusTypeDef USB_WritePacket(USB_OTG_GlobalTypeDef *USBx, uint8_t *src, uint8_t ch_ep_num, uint16_t len, uint8_t dma);
bogdanm 86:04dd9b1680ae 416 void * USB_ReadPacket(USB_OTG_GlobalTypeDef *USBx, uint8_t *dest, uint16_t len);
bogdanm 86:04dd9b1680ae 417 HAL_StatusTypeDef USB_EPSetStall(USB_OTG_GlobalTypeDef *USBx , USB_OTG_EPTypeDef *ep);
bogdanm 86:04dd9b1680ae 418 HAL_StatusTypeDef USB_EPClearStall(USB_OTG_GlobalTypeDef *USBx , USB_OTG_EPTypeDef *ep);
bogdanm 86:04dd9b1680ae 419 HAL_StatusTypeDef USB_SetDevAddress (USB_OTG_GlobalTypeDef *USBx, uint8_t address);
bogdanm 86:04dd9b1680ae 420 HAL_StatusTypeDef USB_DevConnect (USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 421 HAL_StatusTypeDef USB_DevDisconnect (USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 422 HAL_StatusTypeDef USB_StopDevice(USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 423 HAL_StatusTypeDef USB_ActivateSetup (USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 424 HAL_StatusTypeDef USB_EP0_OutStart(USB_OTG_GlobalTypeDef *USBx, uint8_t dma, uint8_t *psetup);
bogdanm 86:04dd9b1680ae 425 uint8_t USB_GetDevSpeed(USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 426 uint32_t USB_GetMode(USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 427 uint32_t USB_ReadInterrupts (USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 428 uint32_t USB_ReadDevAllOutEpInterrupt (USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 429 uint32_t USB_ReadDevOutEPInterrupt (USB_OTG_GlobalTypeDef *USBx , uint8_t epnum);
bogdanm 86:04dd9b1680ae 430 uint32_t USB_ReadDevAllInEpInterrupt (USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 431 uint32_t USB_ReadDevInEPInterrupt (USB_OTG_GlobalTypeDef *USBx , uint8_t epnum);
bogdanm 86:04dd9b1680ae 432 void USB_ClearInterrupts (USB_OTG_GlobalTypeDef *USBx, uint32_t interrupt);
bogdanm 86:04dd9b1680ae 433
bogdanm 86:04dd9b1680ae 434 HAL_StatusTypeDef USB_HostInit (USB_OTG_GlobalTypeDef *USBx, USB_OTG_CfgTypeDef cfg);
bogdanm 86:04dd9b1680ae 435 HAL_StatusTypeDef USB_InitFSLSPClkSel(USB_OTG_GlobalTypeDef *USBx , uint8_t freq);
bogdanm 86:04dd9b1680ae 436 HAL_StatusTypeDef USB_ResetPort(USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 437 HAL_StatusTypeDef USB_DriveVbus (USB_OTG_GlobalTypeDef *USBx, uint8_t state);
bogdanm 86:04dd9b1680ae 438 uint32_t USB_GetHostSpeed (USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 439 uint32_t USB_GetCurrentFrame (USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 440 HAL_StatusTypeDef USB_HC_Init(USB_OTG_GlobalTypeDef *USBx,
bogdanm 86:04dd9b1680ae 441 uint8_t ch_num,
bogdanm 86:04dd9b1680ae 442 uint8_t epnum,
bogdanm 86:04dd9b1680ae 443 uint8_t dev_address,
bogdanm 86:04dd9b1680ae 444 uint8_t speed,
bogdanm 86:04dd9b1680ae 445 uint8_t ep_type,
bogdanm 86:04dd9b1680ae 446 uint16_t mps);
bogdanm 86:04dd9b1680ae 447 HAL_StatusTypeDef USB_HC_StartXfer(USB_OTG_GlobalTypeDef *USBx, USB_OTG_HCTypeDef *hc, uint8_t dma);
bogdanm 86:04dd9b1680ae 448 uint32_t USB_HC_ReadInterrupt (USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 449 HAL_StatusTypeDef USB_HC_Halt(USB_OTG_GlobalTypeDef *USBx , uint8_t hc_num);
bogdanm 86:04dd9b1680ae 450 HAL_StatusTypeDef USB_DoPing(USB_OTG_GlobalTypeDef *USBx , uint8_t ch_num);
bogdanm 86:04dd9b1680ae 451 HAL_StatusTypeDef USB_StopHost(USB_OTG_GlobalTypeDef *USBx);
bogdanm 86:04dd9b1680ae 452
bogdanm 86:04dd9b1680ae 453 /**
bogdanm 86:04dd9b1680ae 454 * @}
bogdanm 86:04dd9b1680ae 455 */
bogdanm 86:04dd9b1680ae 456
bogdanm 86:04dd9b1680ae 457 /**
bogdanm 86:04dd9b1680ae 458 * @}
bogdanm 86:04dd9b1680ae 459 */
Kojto 110:165afa46840b 460 #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx || STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx ||
Kojto 110:165afa46840b 461 STM32F401xC || STM32F401xE || STM32F411xE || STM32F446xx || STM32F469xx || STM32F479xx */
bogdanm 86:04dd9b1680ae 462 #ifdef __cplusplus
bogdanm 86:04dd9b1680ae 463 }
bogdanm 86:04dd9b1680ae 464 #endif
bogdanm 86:04dd9b1680ae 465
bogdanm 86:04dd9b1680ae 466
bogdanm 86:04dd9b1680ae 467 #endif /* __STM32F4xx_LL_USB_H */
bogdanm 86:04dd9b1680ae 468
bogdanm 86:04dd9b1680ae 469 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/