2 ******************************************************************************
3 * @file stm32f7xx_ll_spi.c
4 * @author MCD Application Team
7 * @brief SPI LL module driver.
8 ******************************************************************************
11 * <h2><center>© COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
13 * Redistribution and use in source and binary forms, with or without modification,
14 * are permitted provided that the following conditions are met:
15 * 1. Redistributions of source code must retain the above copyright notice,
16 * this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright notice,
18 * this list of conditions and the following disclaimer in the documentation
19 * and/or other materials provided with the distribution.
20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 ******************************************************************************
37 #if defined(USE_FULL_LL_DRIVER)
39 /* Includes ------------------------------------------------------------------*/
40 #include "stm32f7xx_ll_spi.h"
41 #include "stm32f7xx_ll_bus.h"
42 #include "stm32f7xx_ll_rcc.h"
44 #ifdef USE_FULL_ASSERT
45 #include "stm32_assert.h"
47 #define assert_param(expr) ((void)0U)
50 /** @addtogroup STM32F7xx_LL_Driver
54 #if defined (SPI1) || defined (SPI2) || defined (SPI3) || defined(SPI4) || defined(SPI5) || defined(SPI6)
56 /** @addtogroup SPI_LL
60 /* Private types -------------------------------------------------------------*/
61 /* Private variables ---------------------------------------------------------*/
63 /* Private constants ---------------------------------------------------------*/
64 /** @defgroup SPI_LL_Private_Constants SPI Private Constants
67 /* SPI registers Masks */
68 #define SPI_CR1_CLEAR_MASK (SPI_CR1_CPHA | SPI_CR1_CPOL | SPI_CR1_MSTR | \
69 SPI_CR1_BR | SPI_CR1_LSBFIRST | SPI_CR1_SSI | \
70 SPI_CR1_SSM | SPI_CR1_RXONLY | SPI_CR1_CRCL | \
71 SPI_CR1_CRCNEXT | SPI_CR1_CRCEN | SPI_CR1_BIDIOE | \
77 /* Private macros ------------------------------------------------------------*/
78 /** @defgroup SPI_LL_Private_Macros SPI Private Macros
81 #define IS_LL_SPI_TRANSFER_DIRECTION(__VALUE__) (((__VALUE__) == LL_SPI_FULL_DUPLEX) \
82 || ((__VALUE__) == LL_SPI_SIMPLEX_RX) \
83 || ((__VALUE__) == LL_SPI_HALF_DUPLEX_RX) \
84 || ((__VALUE__) == LL_SPI_HALF_DUPLEX_TX))
86 #define IS_LL_SPI_MODE(__VALUE__) (((__VALUE__) == LL_SPI_MODE_MASTER) \
87 || ((__VALUE__) == LL_SPI_MODE_SLAVE))
89 #define IS_LL_SPI_DATAWIDTH(__VALUE__) (((__VALUE__) == LL_SPI_DATAWIDTH_4BIT) \
90 || ((__VALUE__) == LL_SPI_DATAWIDTH_5BIT) \
91 || ((__VALUE__) == LL_SPI_DATAWIDTH_6BIT) \
92 || ((__VALUE__) == LL_SPI_DATAWIDTH_7BIT) \
93 || ((__VALUE__) == LL_SPI_DATAWIDTH_8BIT) \
94 || ((__VALUE__) == LL_SPI_DATAWIDTH_9BIT) \
95 || ((__VALUE__) == LL_SPI_DATAWIDTH_10BIT) \
96 || ((__VALUE__) == LL_SPI_DATAWIDTH_11BIT) \
97 || ((__VALUE__) == LL_SPI_DATAWIDTH_12BIT) \
98 || ((__VALUE__) == LL_SPI_DATAWIDTH_13BIT) \
99 || ((__VALUE__) == LL_SPI_DATAWIDTH_14BIT) \
100 || ((__VALUE__) == LL_SPI_DATAWIDTH_15BIT) \
101 || ((__VALUE__) == LL_SPI_DATAWIDTH_16BIT))
103 #define IS_LL_SPI_POLARITY(__VALUE__) (((__VALUE__) == LL_SPI_POLARITY_LOW) \
104 || ((__VALUE__) == LL_SPI_POLARITY_HIGH))
106 #define IS_LL_SPI_PHASE(__VALUE__) (((__VALUE__) == LL_SPI_PHASE_1EDGE) \
107 || ((__VALUE__) == LL_SPI_PHASE_2EDGE))
109 #define IS_LL_SPI_NSS(__VALUE__) (((__VALUE__) == LL_SPI_NSS_SOFT) \
110 || ((__VALUE__) == LL_SPI_NSS_HARD_INPUT) \
111 || ((__VALUE__) == LL_SPI_NSS_HARD_OUTPUT))
113 #define IS_LL_SPI_BAUDRATE(__VALUE__) (((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV2) \
114 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV4) \
115 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV8) \
116 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV16) \
117 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV32) \
118 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV64) \
119 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV128) \
120 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV256))
122 #define IS_LL_SPI_BITORDER(__VALUE__) (((__VALUE__) == LL_SPI_LSB_FIRST) \
123 || ((__VALUE__) == LL_SPI_MSB_FIRST))
125 #define IS_LL_SPI_CRCCALCULATION(__VALUE__) (((__VALUE__) == LL_SPI_CRCCALCULATION_ENABLE) \
126 || ((__VALUE__) == LL_SPI_CRCCALCULATION_DISABLE))
128 #define IS_LL_SPI_CRC_POLYNOMIAL(__VALUE__) ((__VALUE__) >= 0x1U)
134 /* Private function prototypes -----------------------------------------------*/
136 /* Exported functions --------------------------------------------------------*/
137 /** @addtogroup SPI_LL_Exported_Functions
141 /** @addtogroup SPI_LL_EF_Init
146 * @brief De-initialize the SPI registers to their default reset values.
147 * @param SPIx SPI Instance
148 * @retval An ErrorStatus enumeration value:
149 * - SUCCESS: SPI registers are de-initialized
150 * - ERROR: SPI registers are not de-initialized
152 ErrorStatus
LL_SPI_DeInit(SPI_TypeDef
*SPIx
)
154 ErrorStatus status
= ERROR
;
156 /* Check the parameters */
157 assert_param(IS_SPI_ALL_INSTANCE(SPIx
));
162 /* Force reset of SPI clock */
163 LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI1
);
165 /* Release reset of SPI clock */
166 LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI1
);
174 /* Force reset of SPI clock */
175 LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_SPI2
);
177 /* Release reset of SPI clock */
178 LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_SPI2
);
186 /* Force reset of SPI clock */
187 LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_SPI3
);
189 /* Release reset of SPI clock */
190 LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_SPI3
);
198 /* Force reset of SPI clock */
199 LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI4
);
201 /* Release reset of SPI clock */
202 LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI4
);
210 /* Force reset of SPI clock */
211 LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI5
);
213 /* Release reset of SPI clock */
214 LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI5
);
222 /* Force reset of SPI clock */
223 LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI6
);
225 /* Release reset of SPI clock */
226 LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI6
);
236 * @brief Initialize the SPI registers according to the specified parameters in SPI_InitStruct.
237 * @note As some bits in SPI configuration registers can only be written when the SPI is disabled (SPI_CR1_SPE bit =0),
238 * SPI IP should be in disabled state prior calling this function. Otherwise, ERROR result will be returned.
239 * @param SPIx SPI Instance
240 * @param SPI_InitStruct pointer to a @ref LL_SPI_InitTypeDef structure
241 * @retval An ErrorStatus enumeration value. (Return always SUCCESS)
243 ErrorStatus
LL_SPI_Init(SPI_TypeDef
*SPIx
, LL_SPI_InitTypeDef
*SPI_InitStruct
)
245 ErrorStatus status
= ERROR
;
247 /* Check the SPI Instance SPIx*/
248 assert_param(IS_SPI_ALL_INSTANCE(SPIx
));
250 /* Check the SPI parameters from SPI_InitStruct*/
251 assert_param(IS_LL_SPI_TRANSFER_DIRECTION(SPI_InitStruct
->TransferDirection
));
252 assert_param(IS_LL_SPI_MODE(SPI_InitStruct
->Mode
));
253 assert_param(IS_LL_SPI_DATAWIDTH(SPI_InitStruct
->DataWidth
));
254 assert_param(IS_LL_SPI_POLARITY(SPI_InitStruct
->ClockPolarity
));
255 assert_param(IS_LL_SPI_PHASE(SPI_InitStruct
->ClockPhase
));
256 assert_param(IS_LL_SPI_NSS(SPI_InitStruct
->NSS
));
257 assert_param(IS_LL_SPI_BAUDRATE(SPI_InitStruct
->BaudRate
));
258 assert_param(IS_LL_SPI_BITORDER(SPI_InitStruct
->BitOrder
));
259 assert_param(IS_LL_SPI_CRCCALCULATION(SPI_InitStruct
->CRCCalculation
));
261 if (LL_SPI_IsEnabled(SPIx
) == 0x00000000U
)
263 /*---------------------------- SPIx CR1 Configuration ------------------------
264 * Configure SPIx CR1 with parameters:
265 * - TransferDirection: SPI_CR1_BIDIMODE, SPI_CR1_BIDIOE and SPI_CR1_RXONLY bits
266 * - Master/Slave Mode: SPI_CR1_MSTR bit
267 * - ClockPolarity: SPI_CR1_CPOL bit
268 * - ClockPhase: SPI_CR1_CPHA bit
269 * - NSS management: SPI_CR1_SSM bit
270 * - BaudRate prescaler: SPI_CR1_BR[2:0] bits
271 * - BitOrder: SPI_CR1_LSBFIRST bit
272 * - CRCCalculation: SPI_CR1_CRCEN bit
274 MODIFY_REG(SPIx
->CR1
,
276 SPI_InitStruct
->TransferDirection
| SPI_InitStruct
->Mode
|
277 SPI_InitStruct
->ClockPolarity
| SPI_InitStruct
->ClockPhase
|
278 SPI_InitStruct
->NSS
| SPI_InitStruct
->BaudRate
|
279 SPI_InitStruct
->BitOrder
| SPI_InitStruct
->CRCCalculation
);
281 /*---------------------------- SPIx CR2 Configuration ------------------------
282 * Configure SPIx CR2 with parameters:
283 * - DataWidth: DS[3:0] bits
284 * - NSS management: SSOE bit
286 MODIFY_REG(SPIx
->CR2
,
287 SPI_CR2_DS
| SPI_CR2_SSOE
,
288 SPI_InitStruct
->DataWidth
| (SPI_InitStruct
->NSS
>> 16U));
290 /*---------------------------- SPIx CRCPR Configuration ----------------------
291 * Configure SPIx CRCPR with parameters:
292 * - CRCPoly: CRCPOLY[15:0] bits
294 if (SPI_InitStruct
->CRCCalculation
== LL_SPI_CRCCALCULATION_ENABLE
)
296 assert_param(IS_LL_SPI_CRC_POLYNOMIAL(SPI_InitStruct
->CRCPoly
));
297 LL_SPI_SetCRCPolynomial(SPIx
, SPI_InitStruct
->CRCPoly
);
302 /* Activate the SPI mode (Reset I2SMOD bit in I2SCFGR register) */
303 CLEAR_BIT(SPIx
->I2SCFGR
, SPI_I2SCFGR_I2SMOD
);
308 * @brief Set each @ref LL_SPI_InitTypeDef field to default value.
309 * @param SPI_InitStruct pointer to a @ref LL_SPI_InitTypeDef structure
310 * whose fields will be set to default values.
313 void LL_SPI_StructInit(LL_SPI_InitTypeDef
*SPI_InitStruct
)
315 /* Set SPI_InitStruct fields to default values */
316 SPI_InitStruct
->TransferDirection
= LL_SPI_FULL_DUPLEX
;
317 SPI_InitStruct
->Mode
= LL_SPI_MODE_SLAVE
;
318 SPI_InitStruct
->DataWidth
= LL_SPI_DATAWIDTH_8BIT
;
319 SPI_InitStruct
->ClockPolarity
= LL_SPI_POLARITY_LOW
;
320 SPI_InitStruct
->ClockPhase
= LL_SPI_PHASE_1EDGE
;
321 SPI_InitStruct
->NSS
= LL_SPI_NSS_HARD_INPUT
;
322 SPI_InitStruct
->BaudRate
= LL_SPI_BAUDRATEPRESCALER_DIV2
;
323 SPI_InitStruct
->BitOrder
= LL_SPI_MSB_FIRST
;
324 SPI_InitStruct
->CRCCalculation
= LL_SPI_CRCCALCULATION_DISABLE
;
325 SPI_InitStruct
->CRCPoly
= 7U;
340 /** @addtogroup I2S_LL
344 /* Private types -------------------------------------------------------------*/
345 /* Private variables ---------------------------------------------------------*/
346 /* Private constants ---------------------------------------------------------*/
347 /** @defgroup I2S_LL_Private_Constants I2S Private Constants
350 /* I2S registers Masks */
351 #define I2S_I2SCFGR_CLEAR_MASK (SPI_I2SCFGR_CHLEN | SPI_I2SCFGR_DATLEN | \
352 SPI_I2SCFGR_CKPOL | SPI_I2SCFGR_I2SSTD | \
353 SPI_I2SCFGR_I2SCFG | SPI_I2SCFGR_I2SMOD )
355 #define I2S_I2SPR_CLEAR_MASK 0x0002U
359 /* Private macros ------------------------------------------------------------*/
360 /** @defgroup I2S_LL_Private_Macros I2S Private Macros
364 #define IS_LL_I2S_DATAFORMAT(__VALUE__) (((__VALUE__) == LL_I2S_DATAFORMAT_16B) \
365 || ((__VALUE__) == LL_I2S_DATAFORMAT_16B_EXTENDED) \
366 || ((__VALUE__) == LL_I2S_DATAFORMAT_24B) \
367 || ((__VALUE__) == LL_I2S_DATAFORMAT_32B))
369 #define IS_LL_I2S_CPOL(__VALUE__) (((__VALUE__) == LL_I2S_POLARITY_LOW) \
370 || ((__VALUE__) == LL_I2S_POLARITY_HIGH))
372 #define IS_LL_I2S_STANDARD(__VALUE__) (((__VALUE__) == LL_I2S_STANDARD_PHILIPS) \
373 || ((__VALUE__) == LL_I2S_STANDARD_MSB) \
374 || ((__VALUE__) == LL_I2S_STANDARD_LSB) \
375 || ((__VALUE__) == LL_I2S_STANDARD_PCM_SHORT) \
376 || ((__VALUE__) == LL_I2S_STANDARD_PCM_LONG))
378 #define IS_LL_I2S_MODE(__VALUE__) (((__VALUE__) == LL_I2S_MODE_SLAVE_TX) \
379 || ((__VALUE__) == LL_I2S_MODE_SLAVE_RX) \
380 || ((__VALUE__) == LL_I2S_MODE_MASTER_TX) \
381 || ((__VALUE__) == LL_I2S_MODE_MASTER_RX))
383 #define IS_LL_I2S_MCLK_OUTPUT(__VALUE__) (((__VALUE__) == LL_I2S_MCLK_OUTPUT_ENABLE) \
384 || ((__VALUE__) == LL_I2S_MCLK_OUTPUT_DISABLE))
386 #define IS_LL_I2S_AUDIO_FREQ(__VALUE__) ((((__VALUE__) >= LL_I2S_AUDIOFREQ_8K) \
387 && ((__VALUE__) <= LL_I2S_AUDIOFREQ_192K)) \
388 || ((__VALUE__) == LL_I2S_AUDIOFREQ_DEFAULT))
390 #define IS_LL_I2S_PRESCALER_LINEAR(__VALUE__) ((__VALUE__) >= 0x2U)
392 #define IS_LL_I2S_PRESCALER_PARITY(__VALUE__) (((__VALUE__) == LL_I2S_PRESCALER_PARITY_EVEN) \
393 || ((__VALUE__) == LL_I2S_PRESCALER_PARITY_ODD))
398 /* Private function prototypes -----------------------------------------------*/
400 /* Exported functions --------------------------------------------------------*/
401 /** @addtogroup I2S_LL_Exported_Functions
405 /** @addtogroup I2S_LL_EF_Init
410 * @brief De-initialize the SPI/I2S registers to their default reset values.
411 * @param SPIx SPI Instance
412 * @retval An ErrorStatus enumeration value:
413 * - SUCCESS: SPI registers are de-initialized
414 * - ERROR: SPI registers are not de-initialized
416 ErrorStatus
LL_I2S_DeInit(SPI_TypeDef
*SPIx
)
418 return LL_SPI_DeInit(SPIx
);
422 * @brief Initializes the SPI/I2S registers according to the specified parameters in I2S_InitStruct.
423 * @note As some bits in SPI configuration registers can only be written when the SPI is disabled (SPI_CR1_SPE bit =0),
424 * SPI IP should be in disabled state prior calling this function. Otherwise, ERROR result will be returned.
425 * @param SPIx SPI Instance
426 * @param I2S_InitStruct pointer to a @ref LL_I2S_InitTypeDef structure
427 * @retval An ErrorStatus enumeration value:
428 * - SUCCESS: SPI registers are Initialized
429 * - ERROR: SPI registers are not Initialized
431 ErrorStatus
LL_I2S_Init(SPI_TypeDef
*SPIx
, LL_I2S_InitTypeDef
*I2S_InitStruct
)
433 uint16_t i2sdiv
= 2U, i2sodd
= 0U, packetlength
= 1U;
435 uint32_t sourceclock
= 0U;
436 ErrorStatus status
= ERROR
;
438 /* Check the I2S parameters */
439 assert_param(IS_I2S_ALL_INSTANCE(SPIx
));
440 assert_param(IS_LL_I2S_MODE(I2S_InitStruct
->Mode
));
441 assert_param(IS_LL_I2S_STANDARD(I2S_InitStruct
->Standard
));
442 assert_param(IS_LL_I2S_DATAFORMAT(I2S_InitStruct
->DataFormat
));
443 assert_param(IS_LL_I2S_MCLK_OUTPUT(I2S_InitStruct
->MCLKOutput
));
444 assert_param(IS_LL_I2S_AUDIO_FREQ(I2S_InitStruct
->AudioFreq
));
445 assert_param(IS_LL_I2S_CPOL(I2S_InitStruct
->ClockPolarity
));
447 if (LL_I2S_IsEnabled(SPIx
) == 0x00000000U
)
449 /*---------------------------- SPIx I2SCFGR Configuration --------------------
450 * Configure SPIx I2SCFGR with parameters:
451 * - Mode: SPI_I2SCFGR_I2SCFG[1:0] bit
452 * - Standard: SPI_I2SCFGR_I2SSTD[1:0] and SPI_I2SCFGR_PCMSYNC bits
453 * - DataFormat: SPI_I2SCFGR_CHLEN and SPI_I2SCFGR_DATLEN bits
454 * - ClockPolarity: SPI_I2SCFGR_CKPOL bit
457 /* Write to SPIx I2SCFGR */
458 MODIFY_REG(SPIx
->I2SCFGR
,
459 I2S_I2SCFGR_CLEAR_MASK
,
460 I2S_InitStruct
->Mode
| I2S_InitStruct
->Standard
|
461 I2S_InitStruct
->DataFormat
| I2S_InitStruct
->ClockPolarity
|
464 /*---------------------------- SPIx I2SPR Configuration ----------------------
465 * Configure SPIx I2SPR with parameters:
466 * - MCLKOutput: SPI_I2SPR_MCKOE bit
467 * - AudioFreq: SPI_I2SPR_I2SDIV[7:0] and SPI_I2SPR_ODD bits
470 /* If the requested audio frequency is not the default, compute the prescaler (i2sodd, i2sdiv)
471 * else, default values are used: i2sodd = 0U, i2sdiv = 2U.
473 if (I2S_InitStruct
->AudioFreq
!= LL_I2S_AUDIOFREQ_DEFAULT
)
475 /* Check the frame length (For the Prescaler computing)
476 * Default value: LL_I2S_DATAFORMAT_16B (packetlength = 1U).
478 if (I2S_InitStruct
->DataFormat
!= LL_I2S_DATAFORMAT_16B
)
480 /* Packet length is 32 bits */
484 /* If an external I2S clock has to be used, the specific define should be set
485 in the project configuration or in the stm32f7xx_ll_rcc.h file */
486 /* Get the I2S source clock value */
487 sourceclock
= LL_RCC_GetI2SClockFreq(LL_RCC_I2S1_CLKSOURCE
);
489 /* Compute the Real divider depending on the MCLK output state with a floating point */
490 if (I2S_InitStruct
->MCLKOutput
== LL_I2S_MCLK_OUTPUT_ENABLE
)
492 /* MCLK output is enabled */
493 tmp
= (uint16_t)(((((sourceclock
/ 256U) * 10U) / I2S_InitStruct
->AudioFreq
)) + 5U);
497 /* MCLK output is disabled */
498 tmp
= (uint16_t)(((((sourceclock
/ (32U * packetlength
)) * 10U) / I2S_InitStruct
->AudioFreq
)) + 5U);
501 /* Remove the floating point */
504 /* Check the parity of the divider */
505 i2sodd
= (uint16_t)(tmp
& (uint16_t)0x0001U
);
507 /* Compute the i2sdiv prescaler */
508 i2sdiv
= (uint16_t)((tmp
- i2sodd
) / 2U);
510 /* Get the Mask for the Odd bit (SPI_I2SPR[8]) register */
511 i2sodd
= (uint16_t)(i2sodd
<< 8U);
514 /* Test if the divider is 1 or 0 or greater than 0xFF */
515 if ((i2sdiv
< 2U) || (i2sdiv
> 0xFFU
))
517 /* Set the default values */
522 /* Write to SPIx I2SPR register the computed value */
523 WRITE_REG(SPIx
->I2SPR
, i2sdiv
| i2sodd
| I2S_InitStruct
->MCLKOutput
);
531 * @brief Set each @ref LL_I2S_InitTypeDef field to default value.
532 * @param I2S_InitStruct pointer to a @ref LL_I2S_InitTypeDef structure
533 * whose fields will be set to default values.
536 void LL_I2S_StructInit(LL_I2S_InitTypeDef
*I2S_InitStruct
)
538 /*--------------- Reset I2S init structure parameters values -----------------*/
539 I2S_InitStruct
->Mode
= LL_I2S_MODE_SLAVE_TX
;
540 I2S_InitStruct
->Standard
= LL_I2S_STANDARD_PHILIPS
;
541 I2S_InitStruct
->DataFormat
= LL_I2S_DATAFORMAT_16B
;
542 I2S_InitStruct
->MCLKOutput
= LL_I2S_MCLK_OUTPUT_DISABLE
;
543 I2S_InitStruct
->AudioFreq
= LL_I2S_AUDIOFREQ_DEFAULT
;
544 I2S_InitStruct
->ClockPolarity
= LL_I2S_POLARITY_LOW
;
548 * @brief Set linear and parity prescaler.
549 * @note To calculate value of PrescalerLinear(I2SDIV[7:0] bits) and PrescalerParity(ODD bit)\n
550 * Check Audio frequency table and formulas inside Reference Manual (SPI/I2S).
551 * @param SPIx SPI Instance
552 * @param PrescalerLinear value: Min_Data=0x02 and Max_Data=0xFF.
553 * @param PrescalerParity This parameter can be one of the following values:
554 * @arg @ref LL_I2S_PRESCALER_PARITY_EVEN
555 * @arg @ref LL_I2S_PRESCALER_PARITY_ODD
558 void LL_I2S_ConfigPrescaler(SPI_TypeDef
*SPIx
, uint32_t PrescalerLinear
, uint32_t PrescalerParity
)
560 /* Check the I2S parameters */
561 assert_param(IS_I2S_ALL_INSTANCE(SPIx
));
562 assert_param(IS_LL_I2S_PRESCALER_LINEAR(PrescalerLinear
));
563 assert_param(IS_LL_I2S_PRESCALER_PARITY(PrescalerParity
));
565 /* Write to SPIx I2SPR */
566 MODIFY_REG(SPIx
->I2SPR
, SPI_I2SPR_I2SDIV
| SPI_I2SPR_ODD
, PrescalerLinear
| (PrescalerParity
<< 8U));
581 #endif /* defined (SPI1) || defined (SPI2) || defined (SPI3) || defined(SPI4) || defined(SPI5) || defined(SPI6) */
587 #endif /* USE_FULL_LL_DRIVER */
589 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/