Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
112:6f327212ef96
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 112:6f327212ef96 1 /**
Kojto 112:6f327212ef96 2 ******************************************************************************
Kojto 112:6f327212ef96 3 * @file stm32l1xx_hal_pcd.h
Kojto 112:6f327212ef96 4 * @author MCD Application Team
Kojto 112:6f327212ef96 5 * @version V1.0.0
Kojto 112:6f327212ef96 6 * @date 5-September-2014
Kojto 112:6f327212ef96 7 * @brief Header file of PCD HAL module.
Kojto 112:6f327212ef96 8 ******************************************************************************
Kojto 112:6f327212ef96 9 * @attention
Kojto 112:6f327212ef96 10 *
Kojto 112:6f327212ef96 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
Kojto 112:6f327212ef96 12 *
Kojto 112:6f327212ef96 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 112:6f327212ef96 14 * are permitted provided that the following conditions are met:
Kojto 112:6f327212ef96 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 112:6f327212ef96 16 * this list of conditions and the following disclaimer.
Kojto 112:6f327212ef96 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 112:6f327212ef96 18 * this list of conditions and the following disclaimer in the documentation
Kojto 112:6f327212ef96 19 * and/or other materials provided with the distribution.
Kojto 112:6f327212ef96 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 112:6f327212ef96 21 * may be used to endorse or promote products derived from this software
Kojto 112:6f327212ef96 22 * without specific prior written permission.
Kojto 112:6f327212ef96 23 *
Kojto 112:6f327212ef96 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 112:6f327212ef96 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 112:6f327212ef96 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 112:6f327212ef96 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 112:6f327212ef96 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 112:6f327212ef96 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 112:6f327212ef96 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 112:6f327212ef96 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 112:6f327212ef96 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 112:6f327212ef96 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 112:6f327212ef96 34 *
Kojto 112:6f327212ef96 35 ******************************************************************************
Kojto 112:6f327212ef96 36 */
Kojto 112:6f327212ef96 37
Kojto 112:6f327212ef96 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 112:6f327212ef96 39 #ifndef __STM32L1xx_HAL_PCD_H
Kojto 112:6f327212ef96 40 #define __STM32L1xx_HAL_PCD_H
Kojto 112:6f327212ef96 41
Kojto 112:6f327212ef96 42 #ifdef __cplusplus
Kojto 112:6f327212ef96 43 extern "C" {
Kojto 112:6f327212ef96 44 #endif
Kojto 112:6f327212ef96 45
Kojto 112:6f327212ef96 46 /* Includes ------------------------------------------------------------------*/
Kojto 112:6f327212ef96 47 #include "stm32l1xx_hal_def.h"
Kojto 112:6f327212ef96 48
Kojto 112:6f327212ef96 49 /** @addtogroup STM32L1xx_HAL_Driver
Kojto 112:6f327212ef96 50 * @{
Kojto 112:6f327212ef96 51 */
Kojto 112:6f327212ef96 52
Kojto 112:6f327212ef96 53 /** @addtogroup PCD
Kojto 112:6f327212ef96 54 * @{
Kojto 112:6f327212ef96 55 */
Kojto 112:6f327212ef96 56
Kojto 112:6f327212ef96 57 /* Exported types ------------------------------------------------------------*/
Kojto 112:6f327212ef96 58 /** @defgroup PCD_Exported_Types PCD Exported Types
Kojto 112:6f327212ef96 59 * @{
Kojto 112:6f327212ef96 60 */
Kojto 112:6f327212ef96 61
Kojto 112:6f327212ef96 62 /**
Kojto 112:6f327212ef96 63 * @brief PCD State structures definition
Kojto 112:6f327212ef96 64 */
Kojto 112:6f327212ef96 65 typedef enum
Kojto 112:6f327212ef96 66 {
Kojto 112:6f327212ef96 67 PCD_READY = 0x00,
Kojto 112:6f327212ef96 68 PCD_ERROR = 0x01,
Kojto 112:6f327212ef96 69 PCD_BUSY = 0x02,
Kojto 112:6f327212ef96 70 PCD_TIMEOUT = 0x03
Kojto 112:6f327212ef96 71 } PCD_StateTypeDef;
Kojto 112:6f327212ef96 72
Kojto 112:6f327212ef96 73 typedef enum
Kojto 112:6f327212ef96 74 {
Kojto 112:6f327212ef96 75 /* double buffered endpoint direction */
Kojto 112:6f327212ef96 76 PCD_EP_DBUF_OUT,
Kojto 112:6f327212ef96 77 PCD_EP_DBUF_IN,
Kojto 112:6f327212ef96 78 PCD_EP_DBUF_ERR,
Kojto 112:6f327212ef96 79 }PCD_EP_DBUF_DIR;
Kojto 112:6f327212ef96 80
Kojto 112:6f327212ef96 81 /* endpoint buffer number */
Kojto 112:6f327212ef96 82 typedef enum
Kojto 112:6f327212ef96 83 {
Kojto 112:6f327212ef96 84 PCD_EP_NOBUF,
Kojto 112:6f327212ef96 85 PCD_EP_BUF0,
Kojto 112:6f327212ef96 86 PCD_EP_BUF1
Kojto 112:6f327212ef96 87 }PCD_EP_BUF_NUM;
Kojto 112:6f327212ef96 88
Kojto 112:6f327212ef96 89 /**
Kojto 112:6f327212ef96 90 * @brief PCD Initialization Structure definition
Kojto 112:6f327212ef96 91 */
Kojto 112:6f327212ef96 92 typedef struct
Kojto 112:6f327212ef96 93 {
Kojto 112:6f327212ef96 94 uint32_t dev_endpoints; /*!< Device Endpoints number.
Kojto 112:6f327212ef96 95 This parameter depends on the used USB core.
Kojto 112:6f327212ef96 96 This parameter must be a number between Min_Data = 1 and Max_Data = 15 */
Kojto 112:6f327212ef96 97
Kojto 112:6f327212ef96 98 uint32_t speed; /*!< USB Core speed.
Kojto 112:6f327212ef96 99 This parameter can be any value of @ref USB_Core_Speed */
Kojto 112:6f327212ef96 100
Kojto 112:6f327212ef96 101 uint32_t ep0_mps; /*!< Set the Endpoint 0 Max Packet size.
Kojto 112:6f327212ef96 102 This parameter can be any value of @ref USB_EP0_MPS */
Kojto 112:6f327212ef96 103
Kojto 112:6f327212ef96 104 uint32_t phy_itface; /*!< Select the used PHY interface.
Kojto 112:6f327212ef96 105 This parameter can be any value of @ref USB_Core_PHY */
Kojto 112:6f327212ef96 106
Kojto 112:6f327212ef96 107 uint32_t Sof_enable; /*!< Enable or disable the output of the SOF signal. */
Kojto 112:6f327212ef96 108
Kojto 112:6f327212ef96 109 uint32_t low_power_enable; /*!< Enable or disable Low Power mode */
Kojto 112:6f327212ef96 110
Kojto 112:6f327212ef96 111 uint32_t lpm_enable; /*!< Enable or disable Battery charging. */
Kojto 112:6f327212ef96 112
Kojto 112:6f327212ef96 113 uint32_t battery_charging_enable; /*!< Enable or disable Battery charging. */
Kojto 112:6f327212ef96 114
Kojto 112:6f327212ef96 115 }PCD_InitTypeDef;
Kojto 112:6f327212ef96 116
Kojto 112:6f327212ef96 117 typedef struct
Kojto 112:6f327212ef96 118 {
Kojto 112:6f327212ef96 119 uint8_t num; /*!< Endpoint number
Kojto 112:6f327212ef96 120 This parameter must be a number between Min_Data = 1 and Max_Data = 15 */
Kojto 112:6f327212ef96 121
Kojto 112:6f327212ef96 122 uint8_t is_in; /*!< Endpoint direction
Kojto 112:6f327212ef96 123 This parameter must be a number between Min_Data = 0 and Max_Data = 1 */
Kojto 112:6f327212ef96 124
Kojto 112:6f327212ef96 125 uint8_t is_stall; /*!< Endpoint stall condition
Kojto 112:6f327212ef96 126 This parameter must be a number between Min_Data = 0 and Max_Data = 1 */
Kojto 112:6f327212ef96 127
Kojto 112:6f327212ef96 128 uint8_t type; /*!< Endpoint type
Kojto 112:6f327212ef96 129 This parameter can be any value of @ref USB_EP_Type */
Kojto 112:6f327212ef96 130
Kojto 112:6f327212ef96 131 uint16_t pmaadress; /*!< PMA Address
Kojto 112:6f327212ef96 132 This parameter can be any value between Min_addr = 0 and Max_addr = 1K */
Kojto 112:6f327212ef96 133
Kojto 112:6f327212ef96 134
Kojto 112:6f327212ef96 135 uint16_t pmaaddr0; /*!< PMA Address0
Kojto 112:6f327212ef96 136 This parameter can be any value between Min_addr = 0 and Max_addr = 1K */
Kojto 112:6f327212ef96 137
Kojto 112:6f327212ef96 138
Kojto 112:6f327212ef96 139 uint16_t pmaaddr1; /*!< PMA Address1
Kojto 112:6f327212ef96 140 This parameter can be any value between Min_addr = 0 and Max_addr = 1K */
Kojto 112:6f327212ef96 141
Kojto 112:6f327212ef96 142
Kojto 112:6f327212ef96 143 uint8_t doublebuffer; /*!< Double buffer enable
Kojto 112:6f327212ef96 144 This parameter can be 0 or 1 */
Kojto 112:6f327212ef96 145
Kojto 112:6f327212ef96 146 uint32_t maxpacket; /*!< Endpoint Max packet size
Kojto 112:6f327212ef96 147 This parameter must be a number between Min_Data = 0 and Max_Data = 64KB */
Kojto 112:6f327212ef96 148
Kojto 112:6f327212ef96 149 uint8_t *xfer_buff; /*!< Pointer to transfer buffer */
Kojto 112:6f327212ef96 150
Kojto 112:6f327212ef96 151
Kojto 112:6f327212ef96 152 uint32_t xfer_len; /*!< Current transfer length */
Kojto 112:6f327212ef96 153
Kojto 112:6f327212ef96 154 uint32_t xfer_count; /*!< Partial transfer length in case of multi packet transfer */
Kojto 112:6f327212ef96 155
Kojto 112:6f327212ef96 156 }PCD_EPTypeDef;
Kojto 112:6f327212ef96 157
Kojto 112:6f327212ef96 158 typedef USB_TypeDef PCD_TypeDef;
Kojto 112:6f327212ef96 159
Kojto 112:6f327212ef96 160 /**
Kojto 112:6f327212ef96 161 * @brief PCD Handle Structure definition
Kojto 112:6f327212ef96 162 */
Kojto 112:6f327212ef96 163 typedef struct
Kojto 112:6f327212ef96 164 {
Kojto 112:6f327212ef96 165 PCD_TypeDef *Instance; /*!< Register base address */
Kojto 112:6f327212ef96 166 PCD_InitTypeDef Init; /*!< PCD required parameters */
Kojto 112:6f327212ef96 167 __IO uint8_t USB_Address; /*!< USB Address */
Kojto 112:6f327212ef96 168 PCD_EPTypeDef IN_ep[8]; /*!< IN endpoint parameters */
Kojto 112:6f327212ef96 169 PCD_EPTypeDef OUT_ep[8]; /*!< OUT endpoint parameters */
Kojto 112:6f327212ef96 170 HAL_LockTypeDef Lock; /*!< PCD peripheral status */
Kojto 112:6f327212ef96 171 __IO PCD_StateTypeDef State; /*!< PCD communication state */
Kojto 112:6f327212ef96 172 uint32_t Setup[12]; /*!< Setup packet buffer */
Kojto 112:6f327212ef96 173 void *pData; /*!< Pointer to upper stack Handler */
Kojto 112:6f327212ef96 174
Kojto 112:6f327212ef96 175 } PCD_HandleTypeDef;
Kojto 112:6f327212ef96 176
Kojto 112:6f327212ef96 177 /**
Kojto 112:6f327212ef96 178 * @}
Kojto 112:6f327212ef96 179 */
Kojto 112:6f327212ef96 180
Kojto 112:6f327212ef96 181 #include "stm32l1xx_hal_pcd_ex.h"
Kojto 112:6f327212ef96 182 /* Exported constants --------------------------------------------------------*/
Kojto 112:6f327212ef96 183 /** @defgroup PCD_Exported_Constants PCD Exported Constants
Kojto 112:6f327212ef96 184 * @{
Kojto 112:6f327212ef96 185 */
Kojto 112:6f327212ef96 186
Kojto 112:6f327212ef96 187 /** @defgroup USB_Exti_Line_Wakeup USB_Exti_Line_Wakeup
Kojto 112:6f327212ef96 188 * @{
Kojto 112:6f327212ef96 189 */
Kojto 112:6f327212ef96 190
Kojto 112:6f327212ef96 191 #define USB_EXTI_LINE_WAKEUP ((uint32_t)0x00040000) /*!< External interrupt line 18 Connected to the USB FS EXTI Line */
Kojto 112:6f327212ef96 192 /**
Kojto 112:6f327212ef96 193 * @}
Kojto 112:6f327212ef96 194 */
Kojto 112:6f327212ef96 195
Kojto 112:6f327212ef96 196
Kojto 112:6f327212ef96 197 /** @defgroup USB_Core_Speed USB Core Speed
Kojto 112:6f327212ef96 198 * @{
Kojto 112:6f327212ef96 199 */
Kojto 112:6f327212ef96 200 #define PCD_SPEED_HIGH 0 /* Not Supported */
Kojto 112:6f327212ef96 201 #define PCD_SPEED_FULL 2
Kojto 112:6f327212ef96 202 /**
Kojto 112:6f327212ef96 203 * @}
Kojto 112:6f327212ef96 204 */
Kojto 112:6f327212ef96 205
Kojto 112:6f327212ef96 206 /** @defgroup USB_Core_PHY USB Core PHY
Kojto 112:6f327212ef96 207 * @{
Kojto 112:6f327212ef96 208 */
Kojto 112:6f327212ef96 209 #define PCD_PHY_EMBEDDED 2
Kojto 112:6f327212ef96 210 /**
Kojto 112:6f327212ef96 211 * @}
Kojto 112:6f327212ef96 212 */
Kojto 112:6f327212ef96 213
Kojto 112:6f327212ef96 214 /** @defgroup USB_EP0_MPS USB EP0 MPS
Kojto 112:6f327212ef96 215 * @{
Kojto 112:6f327212ef96 216 */
Kojto 112:6f327212ef96 217 #define DEP0CTL_MPS_64 0
Kojto 112:6f327212ef96 218 #define DEP0CTL_MPS_32 1
Kojto 112:6f327212ef96 219 #define DEP0CTL_MPS_16 2
Kojto 112:6f327212ef96 220 #define DEP0CTL_MPS_8 3
Kojto 112:6f327212ef96 221
Kojto 112:6f327212ef96 222 #define PCD_EP0MPS_64 DEP0CTL_MPS_64
Kojto 112:6f327212ef96 223 #define PCD_EP0MPS_32 DEP0CTL_MPS_32
Kojto 112:6f327212ef96 224 #define PCD_EP0MPS_16 DEP0CTL_MPS_16
Kojto 112:6f327212ef96 225 #define PCD_EP0MPS_08 DEP0CTL_MPS_8
Kojto 112:6f327212ef96 226 /**
Kojto 112:6f327212ef96 227 * @}
Kojto 112:6f327212ef96 228 */
Kojto 112:6f327212ef96 229
Kojto 112:6f327212ef96 230 /** @defgroup USB_EP_Type USB EP Type
Kojto 112:6f327212ef96 231 * @{
Kojto 112:6f327212ef96 232 */
Kojto 112:6f327212ef96 233 #define PCD_EP_TYPE_CTRL 0
Kojto 112:6f327212ef96 234 #define PCD_EP_TYPE_ISOC 1
Kojto 112:6f327212ef96 235 #define PCD_EP_TYPE_BULK 2
Kojto 112:6f327212ef96 236 #define PCD_EP_TYPE_INTR 3
Kojto 112:6f327212ef96 237 /**
Kojto 112:6f327212ef96 238 * @}
Kojto 112:6f327212ef96 239 */
Kojto 112:6f327212ef96 240
Kojto 112:6f327212ef96 241 /** @defgroup USB_ENDP_Type USB_ENDP_Type
Kojto 112:6f327212ef96 242 * @{
Kojto 112:6f327212ef96 243 */
Kojto 112:6f327212ef96 244
Kojto 112:6f327212ef96 245 #define PCD_ENDP0 ((uint8_t)0)
Kojto 112:6f327212ef96 246 #define PCD_ENDP1 ((uint8_t)1)
Kojto 112:6f327212ef96 247 #define PCD_ENDP2 ((uint8_t)2)
Kojto 112:6f327212ef96 248 #define PCD_ENDP3 ((uint8_t)3)
Kojto 112:6f327212ef96 249 #define PCD_ENDP4 ((uint8_t)4)
Kojto 112:6f327212ef96 250 #define PCD_ENDP5 ((uint8_t)5)
Kojto 112:6f327212ef96 251 #define PCD_ENDP6 ((uint8_t)6)
Kojto 112:6f327212ef96 252 #define PCD_ENDP7 ((uint8_t)7)
Kojto 112:6f327212ef96 253
Kojto 112:6f327212ef96 254 /* Endpoint Kind */
Kojto 112:6f327212ef96 255 #define PCD_SNG_BUF 0
Kojto 112:6f327212ef96 256 #define PCD_DBL_BUF 1
Kojto 112:6f327212ef96 257
Kojto 112:6f327212ef96 258 #define IS_PCD_ALL_INSTANCE IS_USB_ALL_INSTANCE
Kojto 112:6f327212ef96 259
Kojto 112:6f327212ef96 260 /**
Kojto 112:6f327212ef96 261 * @}
Kojto 112:6f327212ef96 262 */
Kojto 112:6f327212ef96 263
Kojto 112:6f327212ef96 264
Kojto 112:6f327212ef96 265 /**
Kojto 112:6f327212ef96 266 * @}
Kojto 112:6f327212ef96 267 */
Kojto 112:6f327212ef96 268
Kojto 112:6f327212ef96 269 /* Exported macros -----------------------------------------------------------*/
Kojto 112:6f327212ef96 270
Kojto 112:6f327212ef96 271 /** @defgroup PCD_Exported_Macros PCD Exported Macros
Kojto 112:6f327212ef96 272 * @brief macros to handle interrupts and specific clock configurations
Kojto 112:6f327212ef96 273 * @{
Kojto 112:6f327212ef96 274 */
Kojto 112:6f327212ef96 275 #define __HAL_PCD_GET_FLAG(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->ISTR) & (__INTERRUPT__)) == (__INTERRUPT__))
Kojto 112:6f327212ef96 276 #define __HAL_PCD_CLEAR_FLAG(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->ISTR) &= ~(__INTERRUPT__))
Kojto 112:6f327212ef96 277
Kojto 112:6f327212ef96 278 #define __HAL_USB_EXTI_ENABLE_IT() EXTI->IMR |= USB_EXTI_LINE_WAKEUP
Kojto 112:6f327212ef96 279 #define __HAL_USB_EXTI_DISABLE_IT() EXTI->IMR &= ~(USB_EXTI_LINE_WAKEUP)
Kojto 112:6f327212ef96 280 #define __HAL_USB_EXTI_GET_FLAG() EXTI->PR & (USB_EXTI_LINE_WAKEUP)
Kojto 112:6f327212ef96 281 #define __HAL_USB_EXTI_CLEAR_FLAG() EXTI->PR = USB_EXTI_LINE_WAKEUP
Kojto 112:6f327212ef96 282
Kojto 112:6f327212ef96 283 #define __HAL_USB_EXTI_SET_RISING_EDGE_TRIGGER() EXTI->FTSR &= ~(USB_EXTI_LINE_WAKEUP);\
Kojto 112:6f327212ef96 284 EXTI->RTSR |= USB_EXTI_LINE_WAKEUP
Kojto 112:6f327212ef96 285
Kojto 112:6f327212ef96 286
Kojto 112:6f327212ef96 287 #define __HAL_USB_EXTI_SET_FALLING_EDGE_TRIGGER() EXTI->FTSR |= (USB_EXTI_LINE_WAKEUP);\
Kojto 112:6f327212ef96 288 EXTI->RTSR &= ~(USB_EXTI_LINE_WAKEUP)
Kojto 112:6f327212ef96 289
Kojto 112:6f327212ef96 290
Kojto 112:6f327212ef96 291 #define __HAL_USB_EXTI_SET_FALLINGRISING_TRIGGER() EXTI->RTSR &= ~(USB_EXTI_LINE_WAKEUP);\
Kojto 112:6f327212ef96 292 EXTI->FTSR &= ~(USB_EXTI_LINE_WAKEUP);\
Kojto 112:6f327212ef96 293 EXTI->RTSR |= USB_EXTI_LINE_WAKEUP;\
Kojto 112:6f327212ef96 294 EXTI->FTSR |= USB_EXTI_LINE_WAKEUP
Kojto 112:6f327212ef96 295
Kojto 112:6f327212ef96 296 /**
Kojto 112:6f327212ef96 297 * @}
Kojto 112:6f327212ef96 298 */
Kojto 112:6f327212ef96 299
Kojto 112:6f327212ef96 300 /* Internal macros -----------------------------------------------------------*/
Kojto 112:6f327212ef96 301
Kojto 112:6f327212ef96 302 /** @defgroup PCD_Private_Macros PCD Private Macros
Kojto 112:6f327212ef96 303 * @brief macros to handle interrupts and specific clock configurations
Kojto 112:6f327212ef96 304 * @{
Kojto 112:6f327212ef96 305 */
Kojto 112:6f327212ef96 306
Kojto 112:6f327212ef96 307 /* SetENDPOINT */
Kojto 112:6f327212ef96 308 #define PCD_SET_ENDPOINT(USBx, bEpNum,wRegValue) (*(&(USBx)->EP0R + (bEpNum) * 2)= (uint16_t)(wRegValue))
Kojto 112:6f327212ef96 309
Kojto 112:6f327212ef96 310 /* GetENDPOINT */
Kojto 112:6f327212ef96 311 #define PCD_GET_ENDPOINT(USBx, bEpNum) (*(&(USBx)->EP0R + (bEpNum) * 2))
Kojto 112:6f327212ef96 312
Kojto 112:6f327212ef96 313
Kojto 112:6f327212ef96 314
Kojto 112:6f327212ef96 315 /**
Kojto 112:6f327212ef96 316 * @brief sets the type in the endpoint register(bits EP_TYPE[1:0])
Kojto 112:6f327212ef96 317 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 318 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 319 * @param wType: Endpoint Type.
Kojto 112:6f327212ef96 320 * @retval None
Kojto 112:6f327212ef96 321 */
Kojto 112:6f327212ef96 322 #define PCD_SET_EPTYPE(USBx, bEpNum,wType) (PCD_SET_ENDPOINT((USBx), (bEpNum),\
Kojto 112:6f327212ef96 323 ((PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EP_T_MASK) | (wType) )))
Kojto 112:6f327212ef96 324
Kojto 112:6f327212ef96 325 /**
Kojto 112:6f327212ef96 326 * @brief gets the type in the endpoint register(bits EP_TYPE[1:0])
Kojto 112:6f327212ef96 327 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 328 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 329 * @retval Endpoint Type
Kojto 112:6f327212ef96 330 */
Kojto 112:6f327212ef96 331 #define PCD_GET_EPTYPE(USBx, bEpNum) (PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EP_T_FIELD)
Kojto 112:6f327212ef96 332
Kojto 112:6f327212ef96 333
Kojto 112:6f327212ef96 334 /**
Kojto 112:6f327212ef96 335 * @brief free buffer used from the application realizing it to the line
Kojto 112:6f327212ef96 336 toggles bit SW_BUF in the double buffered endpoint register
Kojto 112:6f327212ef96 337 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 338 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 339 * @param bDir: Direction
Kojto 112:6f327212ef96 340 * @retval None
Kojto 112:6f327212ef96 341 */
Kojto 112:6f327212ef96 342 #define PCD_FreeUserBuffer(USBx, bEpNum, bDir)\
Kojto 112:6f327212ef96 343 {\
Kojto 112:6f327212ef96 344 if ((bDir) == PCD_EP_DBUF_OUT)\
Kojto 112:6f327212ef96 345 { /* OUT double buffered endpoint */\
Kojto 112:6f327212ef96 346 PCD_TX_DTOG((USBx), (bEpNum));\
Kojto 112:6f327212ef96 347 }\
Kojto 112:6f327212ef96 348 else if ((bDir) == PCD_EP_DBUF_IN)\
Kojto 112:6f327212ef96 349 { /* IN double buffered endpoint */\
Kojto 112:6f327212ef96 350 PCD_RX_DTOG((USBx), (bEpNum));\
Kojto 112:6f327212ef96 351 }\
Kojto 112:6f327212ef96 352 }
Kojto 112:6f327212ef96 353
Kojto 112:6f327212ef96 354 /**
Kojto 112:6f327212ef96 355 * @brief gets direction of the double buffered endpoint
Kojto 112:6f327212ef96 356 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 357 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 358 * @retval EP_DBUF_OUT, EP_DBUF_IN,
Kojto 112:6f327212ef96 359 * EP_DBUF_ERR if the endpoint counter not yet programmed.
Kojto 112:6f327212ef96 360 */
Kojto 112:6f327212ef96 361 #define PCD_GET_DB_DIR(USBx, bEpNum)\
Kojto 112:6f327212ef96 362 {\
Kojto 112:6f327212ef96 363 if ((uint16_t)(*PCD_EP_RX_CNT((USBx), (bEpNum)) & 0xFC00) != 0)\
Kojto 112:6f327212ef96 364 return(PCD_EP_DBUF_OUT);\
Kojto 112:6f327212ef96 365 else if (((uint16_t)(*PCD_EP_TX_CNT((USBx), (bEpNum))) & 0x03FF) != 0)\
Kojto 112:6f327212ef96 366 return(PCD_EP_DBUF_IN);\
Kojto 112:6f327212ef96 367 else\
Kojto 112:6f327212ef96 368 return(PCD_EP_DBUF_ERR);\
Kojto 112:6f327212ef96 369 }
Kojto 112:6f327212ef96 370
Kojto 112:6f327212ef96 371 /**
Kojto 112:6f327212ef96 372 * @brief sets the status for tx transfer (bits STAT_TX[1:0]).
Kojto 112:6f327212ef96 373 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 374 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 375 * @param wState: new state
Kojto 112:6f327212ef96 376 * @retval None
Kojto 112:6f327212ef96 377 */
Kojto 112:6f327212ef96 378 #define PCD_SET_EP_TX_STATUS(USBx, bEpNum, wState) { register uint16_t _wRegVal;\
Kojto 112:6f327212ef96 379 \
Kojto 112:6f327212ef96 380 _wRegVal = PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EPTX_DTOGMASK;\
Kojto 112:6f327212ef96 381 /* toggle first bit ? */ \
Kojto 112:6f327212ef96 382 if((USB_EPTX_DTOG1 & (wState))!= 0) \
Kojto 112:6f327212ef96 383 { \
Kojto 112:6f327212ef96 384 _wRegVal ^= USB_EPTX_DTOG1; \
Kojto 112:6f327212ef96 385 } \
Kojto 112:6f327212ef96 386 /* toggle second bit ? */ \
Kojto 112:6f327212ef96 387 if((USB_EPTX_DTOG2 & (wState))!= 0) \
Kojto 112:6f327212ef96 388 { \
Kojto 112:6f327212ef96 389 _wRegVal ^= USB_EPTX_DTOG2; \
Kojto 112:6f327212ef96 390 } \
Kojto 112:6f327212ef96 391 PCD_SET_ENDPOINT((USBx), (bEpNum), (_wRegVal | USB_EP_CTR_RX|USB_EP_CTR_TX)); \
Kojto 112:6f327212ef96 392 } /* PCD_SET_EP_TX_STATUS */
Kojto 112:6f327212ef96 393
Kojto 112:6f327212ef96 394 /**
Kojto 112:6f327212ef96 395 * @brief sets the status for rx transfer (bits STAT_TX[1:0])
Kojto 112:6f327212ef96 396 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 397 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 398 * @param wState: new state
Kojto 112:6f327212ef96 399 * @retval None
Kojto 112:6f327212ef96 400 */
Kojto 112:6f327212ef96 401 #define PCD_SET_EP_RX_STATUS(USBx, bEpNum,wState) {\
Kojto 112:6f327212ef96 402 register uint16_t _wRegVal; \
Kojto 112:6f327212ef96 403 \
Kojto 112:6f327212ef96 404 _wRegVal = PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EPRX_DTOGMASK;\
Kojto 112:6f327212ef96 405 /* toggle first bit ? */ \
Kojto 112:6f327212ef96 406 if((USB_EPRX_DTOG1 & (wState))!= 0) \
Kojto 112:6f327212ef96 407 { \
Kojto 112:6f327212ef96 408 _wRegVal ^= USB_EPRX_DTOG1; \
Kojto 112:6f327212ef96 409 } \
Kojto 112:6f327212ef96 410 /* toggle second bit ? */ \
Kojto 112:6f327212ef96 411 if((USB_EPRX_DTOG2 & (wState))!= 0) \
Kojto 112:6f327212ef96 412 { \
Kojto 112:6f327212ef96 413 _wRegVal ^= USB_EPRX_DTOG2; \
Kojto 112:6f327212ef96 414 } \
Kojto 112:6f327212ef96 415 PCD_SET_ENDPOINT((USBx), (bEpNum), (_wRegVal | USB_EP_CTR_RX|USB_EP_CTR_TX)); \
Kojto 112:6f327212ef96 416 } /* PCD_SET_EP_RX_STATUS */
Kojto 112:6f327212ef96 417
Kojto 112:6f327212ef96 418 /**
Kojto 112:6f327212ef96 419 * @brief sets the status for rx & tx (bits STAT_TX[1:0] & STAT_RX[1:0])
Kojto 112:6f327212ef96 420 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 421 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 422 * @param wStaterx: new state.
Kojto 112:6f327212ef96 423 * @param wStatetx: new state.
Kojto 112:6f327212ef96 424 * @retval None
Kojto 112:6f327212ef96 425 */
Kojto 112:6f327212ef96 426 #define PCD_SET_EP_TXRX_STATUS(USBx,bEpNum,wStaterx,wStatetx) {\
Kojto 112:6f327212ef96 427 register uint32_t _wRegVal; \
Kojto 112:6f327212ef96 428 \
Kojto 112:6f327212ef96 429 _wRegVal = PCD_GET_ENDPOINT((USBx), (bEpNum)) & (USB_EPRX_DTOGMASK |USB_EPTX_STAT) ;\
Kojto 112:6f327212ef96 430 /* toggle first bit ? */ \
Kojto 112:6f327212ef96 431 if((USB_EPRX_DTOG1 & ((wStaterx)))!= 0) \
Kojto 112:6f327212ef96 432 { \
Kojto 112:6f327212ef96 433 _wRegVal ^= USB_EPRX_DTOG1; \
Kojto 112:6f327212ef96 434 } \
Kojto 112:6f327212ef96 435 /* toggle second bit ? */ \
Kojto 112:6f327212ef96 436 if((USB_EPRX_DTOG2 & (wStaterx))!= 0) \
Kojto 112:6f327212ef96 437 { \
Kojto 112:6f327212ef96 438 _wRegVal ^= USB_EPRX_DTOG2; \
Kojto 112:6f327212ef96 439 } \
Kojto 112:6f327212ef96 440 /* toggle first bit ? */ \
Kojto 112:6f327212ef96 441 if((USB_EPTX_DTOG1 & (wStatetx))!= 0) \
Kojto 112:6f327212ef96 442 { \
Kojto 112:6f327212ef96 443 _wRegVal ^= USB_EPTX_DTOG1; \
Kojto 112:6f327212ef96 444 } \
Kojto 112:6f327212ef96 445 /* toggle second bit ? */ \
Kojto 112:6f327212ef96 446 if((USB_EPTX_DTOG2 & (wStatetx))!= 0) \
Kojto 112:6f327212ef96 447 { \
Kojto 112:6f327212ef96 448 _wRegVal ^= USB_EPTX_DTOG2; \
Kojto 112:6f327212ef96 449 } \
Kojto 112:6f327212ef96 450 PCD_SET_ENDPOINT((USBx), (bEpNum), _wRegVal | USB_EP_CTR_RX|USB_EP_CTR_TX); \
Kojto 112:6f327212ef96 451 } /* PCD_SET_EP_TXRX_STATUS */
Kojto 112:6f327212ef96 452
Kojto 112:6f327212ef96 453 /**
Kojto 112:6f327212ef96 454 * @brief gets the status for tx/rx transfer (bits STAT_TX[1:0]
Kojto 112:6f327212ef96 455 * /STAT_RX[1:0])
Kojto 112:6f327212ef96 456 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 457 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 458 * @retval status
Kojto 112:6f327212ef96 459 */
Kojto 112:6f327212ef96 460 #define PCD_GET_EP_TX_STATUS(USBx, bEpNum) ((uint16_t)PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EPTX_STAT)
Kojto 112:6f327212ef96 461
Kojto 112:6f327212ef96 462 #define PCD_GET_EP_RX_STATUS(USBx, bEpNum) ((uint16_t)PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EPRX_STAT)
Kojto 112:6f327212ef96 463
Kojto 112:6f327212ef96 464 /**
Kojto 112:6f327212ef96 465 * @brief sets directly the VALID tx/rx-status into the endpoint register
Kojto 112:6f327212ef96 466 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 467 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 468 * @retval None
Kojto 112:6f327212ef96 469 */
Kojto 112:6f327212ef96 470 #define PCD_SET_EP_TX_VALID(USBx, bEpNum) (PCD_SET_EP_TX_STATUS((USBx), (bEpNum), USB_EP_TX_VALID))
Kojto 112:6f327212ef96 471
Kojto 112:6f327212ef96 472 #define PCD_SET_EP_RX_VALID(USBx, bEpNum) (PCD_SET_EP_RX_STATUS((USBx), (bEpNum), USB_EP_RX_VALID))
Kojto 112:6f327212ef96 473
Kojto 112:6f327212ef96 474 /**
Kojto 112:6f327212ef96 475 * @brief checks stall condition in an endpoint.
Kojto 112:6f327212ef96 476 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 477 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 478 * @retval TRUE = endpoint in stall condition.
Kojto 112:6f327212ef96 479 */
Kojto 112:6f327212ef96 480 #define PCD_GET_EP_TX_STALL_STATUS(USBx, bEpNum) (PCD_GET_EP_TX_STATUS((USBx), (bEpNum)) \
Kojto 112:6f327212ef96 481 == USB_EP_TX_STALL)
Kojto 112:6f327212ef96 482 #define PCD_GET_EP_RX_STALL_STATUS(USBx, bEpNum) (PCD_GET_EP_RX_STATUS((USBx), (bEpNum)) \
Kojto 112:6f327212ef96 483 == USB_EP_RX_STALL)
Kojto 112:6f327212ef96 484
Kojto 112:6f327212ef96 485 /**
Kojto 112:6f327212ef96 486 * @brief set & clear EP_KIND bit.
Kojto 112:6f327212ef96 487 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 488 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 489 * @retval None
Kojto 112:6f327212ef96 490 */
Kojto 112:6f327212ef96 491 #define PCD_SET_EP_KIND(USBx, bEpNum) (PCD_SET_ENDPOINT((USBx), (bEpNum), \
Kojto 112:6f327212ef96 492 (USB_EP_CTR_RX|USB_EP_CTR_TX|((PCD_GET_ENDPOINT((USBx), (bEpNum)) | USB_EP_KIND) & USB_EPREG_MASK))))
Kojto 112:6f327212ef96 493 #define PCD_CLEAR_EP_KIND(USBx, bEpNum) (PCD_SET_ENDPOINT((USBx), (bEpNum), \
Kojto 112:6f327212ef96 494 (USB_EP_CTR_RX|USB_EP_CTR_TX|(PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EPKIND_MASK))))
Kojto 112:6f327212ef96 495
Kojto 112:6f327212ef96 496 /**
Kojto 112:6f327212ef96 497 * @brief Sets/clears directly STATUS_OUT bit in the endpoint register.
Kojto 112:6f327212ef96 498 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 499 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 500 * @retval None
Kojto 112:6f327212ef96 501 */
Kojto 112:6f327212ef96 502 #define PCD_SET_OUT_STATUS(USBx, bEpNum) PCD_SET_EP_KIND((USBx), (bEpNum))
Kojto 112:6f327212ef96 503 #define PCD_CLEAR_OUT_STATUS(USBx, bEpNum) PCD_CLEAR_EP_KIND((USBx), (bEpNum))
Kojto 112:6f327212ef96 504
Kojto 112:6f327212ef96 505 /**
Kojto 112:6f327212ef96 506 * @brief Sets/clears directly EP_KIND bit in the endpoint register.
Kojto 112:6f327212ef96 507 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 508 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 509 * @retval None
Kojto 112:6f327212ef96 510 */
Kojto 112:6f327212ef96 511 #define PCD_SET_EP_DBUF(USBx, bEpNum) PCD_SET_EP_KIND((USBx), (bEpNum))
Kojto 112:6f327212ef96 512 #define PCD_CLEAR_EP_DBUF(USBx, bEpNum) PCD_CLEAR_EP_KIND((USBx), (bEpNum))
Kojto 112:6f327212ef96 513
Kojto 112:6f327212ef96 514 /**
Kojto 112:6f327212ef96 515 * @brief Clears bit CTR_RX / CTR_TX in the endpoint register.
Kojto 112:6f327212ef96 516 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 517 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 518 * @retval None
Kojto 112:6f327212ef96 519 */
Kojto 112:6f327212ef96 520 #define PCD_CLEAR_RX_EP_CTR(USBx, bEpNum) (PCD_SET_ENDPOINT((USBx), (bEpNum),\
Kojto 112:6f327212ef96 521 PCD_GET_ENDPOINT((USBx), (bEpNum)) & 0x7FFF & USB_EPREG_MASK))
Kojto 112:6f327212ef96 522 #define PCD_CLEAR_TX_EP_CTR(USBx, bEpNum) (PCD_SET_ENDPOINT((USBx), (bEpNum),\
Kojto 112:6f327212ef96 523 PCD_GET_ENDPOINT((USBx), (bEpNum)) & 0xFF7F & USB_EPREG_MASK))
Kojto 112:6f327212ef96 524
Kojto 112:6f327212ef96 525 /**
Kojto 112:6f327212ef96 526 * @brief Toggles DTOG_RX / DTOG_TX bit in the endpoint register.
Kojto 112:6f327212ef96 527 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 528 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 529 * @retval None
Kojto 112:6f327212ef96 530 */
Kojto 112:6f327212ef96 531 #define PCD_RX_DTOG(USBx, bEpNum) (PCD_SET_ENDPOINT((USBx), (bEpNum), \
Kojto 112:6f327212ef96 532 USB_EP_CTR_RX|USB_EP_CTR_TX|USB_EP_DTOG_RX | (PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EPREG_MASK)))
Kojto 112:6f327212ef96 533 #define PCD_TX_DTOG(USBx, bEpNum) (PCD_SET_ENDPOINT((USBx), (bEpNum), \
Kojto 112:6f327212ef96 534 USB_EP_CTR_RX|USB_EP_CTR_TX|USB_EP_DTOG_TX | (PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EPREG_MASK)))
Kojto 112:6f327212ef96 535
Kojto 112:6f327212ef96 536 /**
Kojto 112:6f327212ef96 537 * @brief Clears DTOG_RX / DTOG_TX bit in the endpoint register.
Kojto 112:6f327212ef96 538 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 539 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 540 * @retval None
Kojto 112:6f327212ef96 541 */
Kojto 112:6f327212ef96 542 #define PCD_CLEAR_RX_DTOG(USBx, bEpNum) if((PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EP_DTOG_RX) != 0)\
Kojto 112:6f327212ef96 543 { \
Kojto 112:6f327212ef96 544 PCD_RX_DTOG((USBx), (bEpNum)); \
Kojto 112:6f327212ef96 545 }
Kojto 112:6f327212ef96 546 #define PCD_CLEAR_TX_DTOG(USBx, bEpNum) if((PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EP_DTOG_TX) != 0)\
Kojto 112:6f327212ef96 547 { \
Kojto 112:6f327212ef96 548 PCD_TX_DTOG((USBx), (bEpNum)); \
Kojto 112:6f327212ef96 549 }
Kojto 112:6f327212ef96 550
Kojto 112:6f327212ef96 551 /**
Kojto 112:6f327212ef96 552 * @brief Sets address in an endpoint register.
Kojto 112:6f327212ef96 553 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 554 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 555 * @param bAddr: Address.
Kojto 112:6f327212ef96 556 * @retval None
Kojto 112:6f327212ef96 557 */
Kojto 112:6f327212ef96 558 #define PCD_SET_EP_ADDRESS(USBx, bEpNum,bAddr) PCD_SET_ENDPOINT((USBx), (bEpNum),\
Kojto 112:6f327212ef96 559 USB_EP_CTR_RX|USB_EP_CTR_TX|(PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EPREG_MASK) | (bAddr))
Kojto 112:6f327212ef96 560
Kojto 112:6f327212ef96 561 #define PCD_GET_EP_ADDRESS(USBx, bEpNum) ((uint8_t)(PCD_GET_ENDPOINT((USBx), (bEpNum)) & USB_EPADDR_FIELD))
Kojto 112:6f327212ef96 562
Kojto 112:6f327212ef96 563 #define PCD_EP_TX_ADDRESS(USBx, bEpNum) ((uint32_t *)(((USBx)->BTABLE+(bEpNum)*8)*2+ ((uint32_t)(USBx) + 0x400)))
Kojto 112:6f327212ef96 564 #define PCD_EP_TX_CNT(USBx, bEpNum) ((uint32_t *)(((USBx)->BTABLE+(bEpNum)*8+2)*2+ ((uint32_t)(USBx) + 0x400)))
Kojto 112:6f327212ef96 565 #define PCD_EP_RX_ADDRESS(USBx, bEpNum) ((uint32_t *)(((USBx)->BTABLE+(bEpNum)*8+4)*2+ ((uint32_t)(USBx) + 0x400)))
Kojto 112:6f327212ef96 566 #define PCD_EP_RX_CNT(USBx, bEpNum) ((uint32_t *)(((USBx)->BTABLE+(bEpNum)*8+6)*2+ ((uint32_t)(USBx) + 0x400)))
Kojto 112:6f327212ef96 567
Kojto 112:6f327212ef96 568 #define PCD_SET_EP_RX_CNT(USBx, bEpNum,wCount) {\
Kojto 112:6f327212ef96 569 uint32_t *pdwReg = PCD_EP_RX_CNT((USBx), (bEpNum)); \
Kojto 112:6f327212ef96 570 PCD_SET_EP_CNT_RX_REG(pdwReg, (wCount));\
Kojto 112:6f327212ef96 571 }
Kojto 112:6f327212ef96 572
Kojto 112:6f327212ef96 573 /**
Kojto 112:6f327212ef96 574 * @brief sets address of the tx/rx buffer.
Kojto 112:6f327212ef96 575 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 576 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 577 * @param wAddr: address to be set (must be word aligned).
Kojto 112:6f327212ef96 578 * @retval None
Kojto 112:6f327212ef96 579 */
Kojto 112:6f327212ef96 580 #define PCD_SET_EP_TX_ADDRESS(USBx, bEpNum,wAddr) (*PCD_EP_TX_ADDRESS((USBx), (bEpNum)) = (((wAddr) >> 1) << 1))
Kojto 112:6f327212ef96 581 #define PCD_SET_EP_RX_ADDRESS(USBx, bEpNum,wAddr) (*PCD_EP_RX_ADDRESS((USBx), (bEpNum)) = (((wAddr) >> 1) << 1))
Kojto 112:6f327212ef96 582
Kojto 112:6f327212ef96 583 /**
Kojto 112:6f327212ef96 584 * @brief Gets address of the tx/rx buffer.
Kojto 112:6f327212ef96 585 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 586 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 587 * @retval address of the buffer.
Kojto 112:6f327212ef96 588 */
Kojto 112:6f327212ef96 589 #define PCD_GET_EP_TX_ADDRESS(USBx, bEpNum) ((uint16_t)*PCD_EP_TX_ADDRESS((USBx), (bEpNum)))
Kojto 112:6f327212ef96 590 #define PCD_GET_EP_RX_ADDRESS(USBx, bEpNum) ((uint16_t)*PCD_EP_RX_ADDRESS((USBx), (bEpNum)))
Kojto 112:6f327212ef96 591
Kojto 112:6f327212ef96 592 /**
Kojto 112:6f327212ef96 593 * @brief Sets counter of rx buffer with no. of blocks.
Kojto 112:6f327212ef96 594 * @param dwReg: Register
Kojto 112:6f327212ef96 595 * @param wCount: Counter.
Kojto 112:6f327212ef96 596 * @param wNBlocks: no. of Blocks.
Kojto 112:6f327212ef96 597 * @retval None
Kojto 112:6f327212ef96 598 */
Kojto 112:6f327212ef96 599 #define PCD_CALC_BLK32(dwReg,wCount,wNBlocks) {\
Kojto 112:6f327212ef96 600 (wNBlocks) = (wCount) >> 5;\
Kojto 112:6f327212ef96 601 if(((wCount) & 0x1f) == 0)\
Kojto 112:6f327212ef96 602 { \
Kojto 112:6f327212ef96 603 (wNBlocks)--;\
Kojto 112:6f327212ef96 604 } \
Kojto 112:6f327212ef96 605 *pdwReg = (uint16_t)((uint16_t)((wNBlocks) << 10) | 0x8000); \
Kojto 112:6f327212ef96 606 }/* PCD_CALC_BLK32 */
Kojto 112:6f327212ef96 607
Kojto 112:6f327212ef96 608 #define PCD_CALC_BLK2(dwReg,wCount,wNBlocks) {\
Kojto 112:6f327212ef96 609 (wNBlocks) = (wCount) >> 1;\
Kojto 112:6f327212ef96 610 if(((wCount) & 0x1) != 0)\
Kojto 112:6f327212ef96 611 { \
Kojto 112:6f327212ef96 612 (wNBlocks)++;\
Kojto 112:6f327212ef96 613 } \
Kojto 112:6f327212ef96 614 *pdwReg = (uint16_t)((wNBlocks) << 10);\
Kojto 112:6f327212ef96 615 }/* PCD_CALC_BLK2 */
Kojto 112:6f327212ef96 616
Kojto 112:6f327212ef96 617 #define PCD_SET_EP_CNT_RX_REG(dwReg,wCount) {\
Kojto 112:6f327212ef96 618 uint16_t wNBlocks;\
Kojto 112:6f327212ef96 619 if((wCount) > 62) \
Kojto 112:6f327212ef96 620 { \
Kojto 112:6f327212ef96 621 PCD_CALC_BLK32((dwReg),(wCount),wNBlocks); \
Kojto 112:6f327212ef96 622 } \
Kojto 112:6f327212ef96 623 else \
Kojto 112:6f327212ef96 624 { \
Kojto 112:6f327212ef96 625 PCD_CALC_BLK2((dwReg),(wCount),wNBlocks); \
Kojto 112:6f327212ef96 626 } \
Kojto 112:6f327212ef96 627 }/* PCD_SET_EP_CNT_RX_REG */
Kojto 112:6f327212ef96 628
Kojto 112:6f327212ef96 629 #define PCD_SET_EP_RX_DBUF0_CNT(USBx, bEpNum,wCount) {\
Kojto 112:6f327212ef96 630 uint16_t *pdwReg = PCD_EP_TX_CNT((USBx), (bEpNum)); \
Kojto 112:6f327212ef96 631 PCD_SET_EP_CNT_RX_REG(pdwReg, (wCount));\
Kojto 112:6f327212ef96 632 }
Kojto 112:6f327212ef96 633 /**
Kojto 112:6f327212ef96 634 * @brief sets counter for the tx/rx buffer.
Kojto 112:6f327212ef96 635 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 636 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 637 * @param wCount: Counter value.
Kojto 112:6f327212ef96 638 * @retval None
Kojto 112:6f327212ef96 639 */
Kojto 112:6f327212ef96 640 #define PCD_SET_EP_TX_CNT(USBx, bEpNum,wCount) (*PCD_EP_TX_CNT((USBx), (bEpNum)) = (wCount))
Kojto 112:6f327212ef96 641
Kojto 112:6f327212ef96 642
Kojto 112:6f327212ef96 643 /**
Kojto 112:6f327212ef96 644 * @brief gets counter of the tx buffer.
Kojto 112:6f327212ef96 645 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 646 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 647 * @retval Counter value
Kojto 112:6f327212ef96 648 */
Kojto 112:6f327212ef96 649 #define PCD_GET_EP_TX_CNT(USBx, bEpNum)((uint16_t)(*PCD_EP_TX_CNT((USBx), (bEpNum))) & 0x3ff)
Kojto 112:6f327212ef96 650 #define PCD_GET_EP_RX_CNT(USBx, bEpNum)((uint16_t)(*PCD_EP_RX_CNT((USBx), (bEpNum))) & 0x3ff)
Kojto 112:6f327212ef96 651
Kojto 112:6f327212ef96 652 /**
Kojto 112:6f327212ef96 653 * @brief Sets buffer 0/1 address in a double buffer endpoint.
Kojto 112:6f327212ef96 654 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 655 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 656 * @param wBuf0Addr: buffer 0 address.
Kojto 112:6f327212ef96 657 * @retval Counter value
Kojto 112:6f327212ef96 658 */
Kojto 112:6f327212ef96 659 #define PCD_SET_EP_DBUF0_ADDR(USBx, bEpNum,wBuf0Addr) {PCD_SET_EP_TX_ADDRESS((USBx), (bEpNum), (wBuf0Addr));}
Kojto 112:6f327212ef96 660 #define PCD_SET_EP_DBUF1_ADDR(USBx, bEpNum,wBuf1Addr) {PCD_SET_EP_RX_ADDRESS((USBx), (bEpNum), (wBuf1Addr));}
Kojto 112:6f327212ef96 661
Kojto 112:6f327212ef96 662 /**
Kojto 112:6f327212ef96 663 * @brief Sets addresses in a double buffer endpoint.
Kojto 112:6f327212ef96 664 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 665 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 666 * @param wBuf0Addr: buffer 0 address.
Kojto 112:6f327212ef96 667 * @param wBuf1Addr = buffer 1 address.
Kojto 112:6f327212ef96 668 * @retval None
Kojto 112:6f327212ef96 669 */
Kojto 112:6f327212ef96 670 #define PCD_SET_EP_DBUF_ADDR(USBx, bEpNum,wBuf0Addr,wBuf1Addr) { \
Kojto 112:6f327212ef96 671 PCD_SET_EP_DBUF0_ADDR((USBx), (bEpNum), (wBuf0Addr));\
Kojto 112:6f327212ef96 672 PCD_SET_EP_DBUF1_ADDR((USBx), (bEpNum), (wBuf1Addr));\
Kojto 112:6f327212ef96 673 } /* PCD_SET_EP_DBUF_ADDR */
Kojto 112:6f327212ef96 674
Kojto 112:6f327212ef96 675 /**
Kojto 112:6f327212ef96 676 * @brief Gets buffer 0/1 address of a double buffer endpoint.
Kojto 112:6f327212ef96 677 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 678 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 679 * @retval None
Kojto 112:6f327212ef96 680 */
Kojto 112:6f327212ef96 681 #define PCD_GET_EP_DBUF0_ADDR(USBx, bEpNum) (PCD_GET_EP_TX_ADDRESS((USBx), (bEpNum)))
Kojto 112:6f327212ef96 682 #define PCD_GET_EP_DBUF1_ADDR(USBx, bEpNum) (PCD_GET_EP_RX_ADDRESS((USBx), (bEpNum)))
Kojto 112:6f327212ef96 683
Kojto 112:6f327212ef96 684 /**
Kojto 112:6f327212ef96 685 * @brief Gets buffer 0/1 address of a double buffer endpoint.
Kojto 112:6f327212ef96 686 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 687 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 688 * @param bDir: endpoint dir EP_DBUF_OUT = OUT
Kojto 112:6f327212ef96 689 * EP_DBUF_IN = IN
Kojto 112:6f327212ef96 690 * @param wCount: Counter value
Kojto 112:6f327212ef96 691 * @retval None
Kojto 112:6f327212ef96 692 */
Kojto 112:6f327212ef96 693 #define PCD_SET_EP_DBUF0_CNT(USBx, bEpNum, bDir, wCount) { \
Kojto 112:6f327212ef96 694 if((bDir) == PCD_EP_DBUF_OUT)\
Kojto 112:6f327212ef96 695 /* OUT endpoint */ \
Kojto 112:6f327212ef96 696 {PCD_SET_EP_RX_DBUF0_CNT((USBx), (bEpNum),(wCount));} \
Kojto 112:6f327212ef96 697 else if((bDir) == PCD_EP_DBUF_IN)\
Kojto 112:6f327212ef96 698 /* IN endpoint */ \
Kojto 112:6f327212ef96 699 *PCD_EP_TX_CNT((USBx), (bEpNum)) = (uint32_t)(wCount); \
Kojto 112:6f327212ef96 700 } /* SetEPDblBuf0Count*/
Kojto 112:6f327212ef96 701
Kojto 112:6f327212ef96 702 #define PCD_SET_EP_DBUF1_CNT(USBx, bEpNum, bDir, wCount) { \
Kojto 112:6f327212ef96 703 if((bDir) == PCD_EP_DBUF_OUT)\
Kojto 112:6f327212ef96 704 {/* OUT endpoint */ \
Kojto 112:6f327212ef96 705 PCD_SET_EP_RX_CNT((USBx), (bEpNum),(wCount)); \
Kojto 112:6f327212ef96 706 } \
Kojto 112:6f327212ef96 707 else if((bDir) == PCD_EP_DBUF_IN)\
Kojto 112:6f327212ef96 708 {/* IN endpoint */ \
Kojto 112:6f327212ef96 709 *PCD_EP_RX_CNT((USBx), (bEpNum)) = (uint32_t)(wCount); \
Kojto 112:6f327212ef96 710 } \
Kojto 112:6f327212ef96 711 } /* SetEPDblBuf1Count */
Kojto 112:6f327212ef96 712
Kojto 112:6f327212ef96 713 #define PCD_SET_EP_DBUF_CNT(USBx, bEpNum, bDir, wCount) {\
Kojto 112:6f327212ef96 714 PCD_SET_EP_DBUF0_CNT((USBx), (bEpNum), (bDir), (wCount)); \
Kojto 112:6f327212ef96 715 PCD_SET_EP_DBUF1_CNT((USBx), (bEpNum), (bDir), (wCount)); \
Kojto 112:6f327212ef96 716 } /* PCD_SET_EP_DBUF_CNT */
Kojto 112:6f327212ef96 717
Kojto 112:6f327212ef96 718 /**
Kojto 112:6f327212ef96 719 * @brief Gets buffer 0/1 rx/tx counter for double buffering.
Kojto 112:6f327212ef96 720 * @param USBx: USB peripheral instance register address.
Kojto 112:6f327212ef96 721 * @param bEpNum: Endpoint Number.
Kojto 112:6f327212ef96 722 * @retval None
Kojto 112:6f327212ef96 723 */
Kojto 112:6f327212ef96 724 #define PCD_GET_EP_DBUF0_CNT(USBx, bEpNum) (PCD_GET_EP_TX_CNT((USBx), (bEpNum)))
Kojto 112:6f327212ef96 725 #define PCD_GET_EP_DBUF1_CNT(USBx, bEpNum) (PCD_GET_EP_RX_CNT((USBx), (bEpNum)))
Kojto 112:6f327212ef96 726
Kojto 112:6f327212ef96 727
Kojto 112:6f327212ef96 728 /**
Kojto 112:6f327212ef96 729 * @}
Kojto 112:6f327212ef96 730 */
Kojto 112:6f327212ef96 731
Kojto 112:6f327212ef96 732 /* Exported functions --------------------------------------------------------*/
Kojto 112:6f327212ef96 733
Kojto 112:6f327212ef96 734 /** @addtogroup PCD_Exported_Functions
Kojto 112:6f327212ef96 735 * @{
Kojto 112:6f327212ef96 736 */
Kojto 112:6f327212ef96 737
Kojto 112:6f327212ef96 738 /* Initialization/de-initialization functions **********************************/
Kojto 112:6f327212ef96 739
Kojto 112:6f327212ef96 740
Kojto 112:6f327212ef96 741 /** @addtogroup PCD_Exported_Functions_Group1
Kojto 112:6f327212ef96 742 * @{
Kojto 112:6f327212ef96 743 */
Kojto 112:6f327212ef96 744
Kojto 112:6f327212ef96 745 HAL_StatusTypeDef HAL_PCD_Init(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 746 HAL_StatusTypeDef HAL_PCD_DeInit (PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 747 void HAL_PCD_MspInit(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 748 void HAL_PCD_MspDeInit(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 749
Kojto 112:6f327212ef96 750 /**
Kojto 112:6f327212ef96 751 * @}
Kojto 112:6f327212ef96 752 */
Kojto 112:6f327212ef96 753
Kojto 112:6f327212ef96 754 /* I/O operation functions *****************************************************/
Kojto 112:6f327212ef96 755 /* Non-Blocking mode: Interrupt */
Kojto 112:6f327212ef96 756 /** @addtogroup PCD_Exported_Functions_Group2
Kojto 112:6f327212ef96 757 * @{
Kojto 112:6f327212ef96 758 */
Kojto 112:6f327212ef96 759
Kojto 112:6f327212ef96 760 HAL_StatusTypeDef HAL_PCD_Start(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 761 HAL_StatusTypeDef HAL_PCD_Stop(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 762 void HAL_PCD_IRQHandler(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 763
Kojto 112:6f327212ef96 764 void HAL_PCD_DataOutStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum);
Kojto 112:6f327212ef96 765 void HAL_PCD_DataInStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum);
Kojto 112:6f327212ef96 766 void HAL_PCD_SetupStageCallback(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 767 void HAL_PCD_SOFCallback(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 768 void HAL_PCD_ResetCallback(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 769 void HAL_PCD_SuspendCallback(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 770 void HAL_PCD_ResumeCallback(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 771 void HAL_PCD_ISOOUTIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum);
Kojto 112:6f327212ef96 772 void HAL_PCD_ISOINIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum);
Kojto 112:6f327212ef96 773 void HAL_PCD_ConnectCallback(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 774 void HAL_PCD_DisconnectCallback(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 775
Kojto 112:6f327212ef96 776 /**
Kojto 112:6f327212ef96 777 * @}
Kojto 112:6f327212ef96 778 */
Kojto 112:6f327212ef96 779
Kojto 112:6f327212ef96 780 /* Peripheral Control functions ************************************************/
Kojto 112:6f327212ef96 781 /** @addtogroup PCD_Exported_Functions_Group3
Kojto 112:6f327212ef96 782 * @{
Kojto 112:6f327212ef96 783 */
Kojto 112:6f327212ef96 784 HAL_StatusTypeDef HAL_PCD_DevConnect(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 785 HAL_StatusTypeDef HAL_PCD_DevDisconnect(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 786 HAL_StatusTypeDef HAL_PCD_SetAddress(PCD_HandleTypeDef *hpcd, uint8_t address);
Kojto 112:6f327212ef96 787 HAL_StatusTypeDef HAL_PCD_EP_Open(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint16_t ep_mps, uint8_t ep_type);
Kojto 112:6f327212ef96 788 HAL_StatusTypeDef HAL_PCD_EP_Close(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
Kojto 112:6f327212ef96 789 HAL_StatusTypeDef HAL_PCD_EP_Receive(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint8_t *pBuf, uint32_t len);
Kojto 112:6f327212ef96 790 HAL_StatusTypeDef HAL_PCD_EP_Transmit(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint8_t *pBuf, uint32_t len);
Kojto 112:6f327212ef96 791 uint16_t HAL_PCD_EP_GetRxCount(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
Kojto 112:6f327212ef96 792 HAL_StatusTypeDef HAL_PCD_EP_SetStall(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
Kojto 112:6f327212ef96 793 HAL_StatusTypeDef HAL_PCD_EP_ClrStall(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
Kojto 112:6f327212ef96 794 HAL_StatusTypeDef HAL_PCD_EP_Flush(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
Kojto 112:6f327212ef96 795 HAL_StatusTypeDef HAL_PCD_ActiveRemoteWakeup(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 796 HAL_StatusTypeDef HAL_PCD_DeActiveRemoteWakeup(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 797 /**
Kojto 112:6f327212ef96 798 * @}
Kojto 112:6f327212ef96 799 */
Kojto 112:6f327212ef96 800
Kojto 112:6f327212ef96 801
Kojto 112:6f327212ef96 802 /* Peripheral State functions **************************************************/
Kojto 112:6f327212ef96 803 /** @addtogroup PCD_Exported_Functions_Group4
Kojto 112:6f327212ef96 804 * @{
Kojto 112:6f327212ef96 805 */
Kojto 112:6f327212ef96 806 PCD_StateTypeDef HAL_PCD_GetState(PCD_HandleTypeDef *hpcd);
Kojto 112:6f327212ef96 807 void HAL_PCDEx_SetConnectionState(PCD_HandleTypeDef *hpcd, uint8_t state);
Kojto 112:6f327212ef96 808 /**
Kojto 112:6f327212ef96 809 * @}
Kojto 112:6f327212ef96 810 */
Kojto 112:6f327212ef96 811
Kojto 112:6f327212ef96 812
Kojto 112:6f327212ef96 813 /**
Kojto 112:6f327212ef96 814 * @}
Kojto 112:6f327212ef96 815 */
Kojto 112:6f327212ef96 816
Kojto 112:6f327212ef96 817
Kojto 112:6f327212ef96 818 /**
Kojto 112:6f327212ef96 819 * @}
Kojto 112:6f327212ef96 820 */
Kojto 112:6f327212ef96 821
Kojto 112:6f327212ef96 822 /**
Kojto 112:6f327212ef96 823 * @}
Kojto 112:6f327212ef96 824 */
Kojto 112:6f327212ef96 825
Kojto 112:6f327212ef96 826 #ifdef __cplusplus
Kojto 112:6f327212ef96 827 }
Kojto 112:6f327212ef96 828 #endif
Kojto 112:6f327212ef96 829
Kojto 112:6f327212ef96 830
Kojto 112:6f327212ef96 831 #endif /* __STM32L1xx_HAL_PCD_H */
Kojto 112:6f327212ef96 832
Kojto 112:6f327212ef96 833 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/