2 ******************************************************************************
3 * @file stm32f7xx_ll_spi.c
4 * @author MCD Application Team
5 * @brief SPI LL module driver.
6 ******************************************************************************
9 * <h2><center>© Copyright (c) 2017 STMicroelectronics.
10 * All rights reserved.</center></h2>
12 * This software component is licensed by ST under BSD 3-Clause license,
13 * the "License"; You may not use this file except in compliance with the
14 * License. You may obtain a copy of the License at:
15 * opensource.org/licenses/BSD-3-Clause
17 ******************************************************************************
19 #if defined(USE_FULL_LL_DRIVER)
21 /* Includes ------------------------------------------------------------------*/
22 #include "stm32f7xx_ll_spi.h"
23 #include "stm32f7xx_ll_bus.h"
24 #include "stm32f7xx_ll_rcc.h"
26 #ifdef USE_FULL_ASSERT
27 #include "stm32_assert.h"
29 #define assert_param(expr) ((void)0U)
32 /** @addtogroup STM32F7xx_LL_Driver
36 #if defined (SPI1) || defined (SPI2) || defined (SPI3) || defined (SPI4) || defined (SPI5) || defined(SPI6)
38 /** @addtogroup SPI_LL
42 /* Private types -------------------------------------------------------------*/
43 /* Private variables ---------------------------------------------------------*/
45 /* Private constants ---------------------------------------------------------*/
46 /** @defgroup SPI_LL_Private_Constants SPI Private Constants
49 /* SPI registers Masks */
50 #define SPI_CR1_CLEAR_MASK (SPI_CR1_CPHA | SPI_CR1_CPOL | SPI_CR1_MSTR | \
51 SPI_CR1_BR | SPI_CR1_LSBFIRST | SPI_CR1_SSI | \
52 SPI_CR1_SSM | SPI_CR1_RXONLY | SPI_CR1_CRCL | \
53 SPI_CR1_CRCNEXT | SPI_CR1_CRCEN | SPI_CR1_BIDIOE | \
59 /* Private macros ------------------------------------------------------------*/
60 /** @defgroup SPI_LL_Private_Macros SPI Private Macros
63 #define IS_LL_SPI_TRANSFER_DIRECTION(__VALUE__) (((__VALUE__) == LL_SPI_FULL_DUPLEX) \
64 || ((__VALUE__) == LL_SPI_SIMPLEX_RX) \
65 || ((__VALUE__) == LL_SPI_HALF_DUPLEX_RX) \
66 || ((__VALUE__) == LL_SPI_HALF_DUPLEX_TX))
68 #define IS_LL_SPI_MODE(__VALUE__) (((__VALUE__) == LL_SPI_MODE_MASTER) \
69 || ((__VALUE__) == LL_SPI_MODE_SLAVE))
71 #define IS_LL_SPI_DATAWIDTH(__VALUE__) (((__VALUE__) == LL_SPI_DATAWIDTH_4BIT) \
72 || ((__VALUE__) == LL_SPI_DATAWIDTH_5BIT) \
73 || ((__VALUE__) == LL_SPI_DATAWIDTH_6BIT) \
74 || ((__VALUE__) == LL_SPI_DATAWIDTH_7BIT) \
75 || ((__VALUE__) == LL_SPI_DATAWIDTH_8BIT) \
76 || ((__VALUE__) == LL_SPI_DATAWIDTH_9BIT) \
77 || ((__VALUE__) == LL_SPI_DATAWIDTH_10BIT) \
78 || ((__VALUE__) == LL_SPI_DATAWIDTH_11BIT) \
79 || ((__VALUE__) == LL_SPI_DATAWIDTH_12BIT) \
80 || ((__VALUE__) == LL_SPI_DATAWIDTH_13BIT) \
81 || ((__VALUE__) == LL_SPI_DATAWIDTH_14BIT) \
82 || ((__VALUE__) == LL_SPI_DATAWIDTH_15BIT) \
83 || ((__VALUE__) == LL_SPI_DATAWIDTH_16BIT))
85 #define IS_LL_SPI_POLARITY(__VALUE__) (((__VALUE__) == LL_SPI_POLARITY_LOW) \
86 || ((__VALUE__) == LL_SPI_POLARITY_HIGH))
88 #define IS_LL_SPI_PHASE(__VALUE__) (((__VALUE__) == LL_SPI_PHASE_1EDGE) \
89 || ((__VALUE__) == LL_SPI_PHASE_2EDGE))
91 #define IS_LL_SPI_NSS(__VALUE__) (((__VALUE__) == LL_SPI_NSS_SOFT) \
92 || ((__VALUE__) == LL_SPI_NSS_HARD_INPUT) \
93 || ((__VALUE__) == LL_SPI_NSS_HARD_OUTPUT))
95 #define IS_LL_SPI_BAUDRATE(__VALUE__) (((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV2) \
96 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV4) \
97 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV8) \
98 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV16) \
99 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV32) \
100 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV64) \
101 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV128) \
102 || ((__VALUE__) == LL_SPI_BAUDRATEPRESCALER_DIV256))
104 #define IS_LL_SPI_BITORDER(__VALUE__) (((__VALUE__) == LL_SPI_LSB_FIRST) \
105 || ((__VALUE__) == LL_SPI_MSB_FIRST))
107 #define IS_LL_SPI_CRCCALCULATION(__VALUE__) (((__VALUE__) == LL_SPI_CRCCALCULATION_ENABLE) \
108 || ((__VALUE__) == LL_SPI_CRCCALCULATION_DISABLE))
110 #define IS_LL_SPI_CRC_POLYNOMIAL(__VALUE__) ((__VALUE__) >= 0x1U)
116 /* Private function prototypes -----------------------------------------------*/
118 /* Exported functions --------------------------------------------------------*/
119 /** @addtogroup SPI_LL_Exported_Functions
123 /** @addtogroup SPI_LL_EF_Init
128 * @brief De-initialize the SPI registers to their default reset values.
129 * @param SPIx SPI Instance
130 * @retval An ErrorStatus enumeration value:
131 * - SUCCESS: SPI registers are de-initialized
132 * - ERROR: SPI registers are not de-initialized
134 ErrorStatus
LL_SPI_DeInit(SPI_TypeDef
*SPIx
)
136 ErrorStatus status
= ERROR
;
138 /* Check the parameters */
139 assert_param(IS_SPI_ALL_INSTANCE(SPIx
));
144 /* Force reset of SPI clock */
145 LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI1
);
147 /* Release reset of SPI clock */
148 LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI1
);
156 /* Force reset of SPI clock */
157 LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_SPI2
);
159 /* Release reset of SPI clock */
160 LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_SPI2
);
168 /* Force reset of SPI clock */
169 LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_SPI3
);
171 /* Release reset of SPI clock */
172 LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_SPI3
);
180 /* Force reset of SPI clock */
181 LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI4
);
183 /* Release reset of SPI clock */
184 LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI4
);
192 /* Force reset of SPI clock */
193 LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI5
);
195 /* Release reset of SPI clock */
196 LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI5
);
204 /* Force reset of SPI clock */
205 LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_SPI6
);
207 /* Release reset of SPI clock */
208 LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_SPI6
);
218 * @brief Initialize the SPI registers according to the specified parameters in SPI_InitStruct.
219 * @note As some bits in SPI configuration registers can only be written when the SPI is disabled (SPI_CR1_SPE bit =0),
220 * SPI peripheral should be in disabled state prior calling this function. Otherwise, ERROR result will be returned.
221 * @param SPIx SPI Instance
222 * @param SPI_InitStruct pointer to a @ref LL_SPI_InitTypeDef structure
223 * @retval An ErrorStatus enumeration value. (Return always SUCCESS)
225 ErrorStatus
LL_SPI_Init(SPI_TypeDef
*SPIx
, LL_SPI_InitTypeDef
*SPI_InitStruct
)
227 ErrorStatus status
= ERROR
;
229 /* Check the SPI Instance SPIx*/
230 assert_param(IS_SPI_ALL_INSTANCE(SPIx
));
232 /* Check the SPI parameters from SPI_InitStruct*/
233 assert_param(IS_LL_SPI_TRANSFER_DIRECTION(SPI_InitStruct
->TransferDirection
));
234 assert_param(IS_LL_SPI_MODE(SPI_InitStruct
->Mode
));
235 assert_param(IS_LL_SPI_DATAWIDTH(SPI_InitStruct
->DataWidth
));
236 assert_param(IS_LL_SPI_POLARITY(SPI_InitStruct
->ClockPolarity
));
237 assert_param(IS_LL_SPI_PHASE(SPI_InitStruct
->ClockPhase
));
238 assert_param(IS_LL_SPI_NSS(SPI_InitStruct
->NSS
));
239 assert_param(IS_LL_SPI_BAUDRATE(SPI_InitStruct
->BaudRate
));
240 assert_param(IS_LL_SPI_BITORDER(SPI_InitStruct
->BitOrder
));
241 assert_param(IS_LL_SPI_CRCCALCULATION(SPI_InitStruct
->CRCCalculation
));
243 if (LL_SPI_IsEnabled(SPIx
) == 0x00000000U
)
245 /*---------------------------- SPIx CR1 Configuration ------------------------
246 * Configure SPIx CR1 with parameters:
247 * - TransferDirection: SPI_CR1_BIDIMODE, SPI_CR1_BIDIOE and SPI_CR1_RXONLY bits
248 * - Master/Slave Mode: SPI_CR1_MSTR bit
249 * - ClockPolarity: SPI_CR1_CPOL bit
250 * - ClockPhase: SPI_CR1_CPHA bit
251 * - NSS management: SPI_CR1_SSM bit
252 * - BaudRate prescaler: SPI_CR1_BR[2:0] bits
253 * - BitOrder: SPI_CR1_LSBFIRST bit
254 * - CRCCalculation: SPI_CR1_CRCEN bit
256 MODIFY_REG(SPIx
->CR1
,
258 SPI_InitStruct
->TransferDirection
| SPI_InitStruct
->Mode
|
259 SPI_InitStruct
->ClockPolarity
| SPI_InitStruct
->ClockPhase
|
260 SPI_InitStruct
->NSS
| SPI_InitStruct
->BaudRate
|
261 SPI_InitStruct
->BitOrder
| SPI_InitStruct
->CRCCalculation
);
263 /*---------------------------- SPIx CR2 Configuration ------------------------
264 * Configure SPIx CR2 with parameters:
265 * - DataWidth: DS[3:0] bits
266 * - NSS management: SSOE bit
268 MODIFY_REG(SPIx
->CR2
,
269 SPI_CR2_DS
| SPI_CR2_SSOE
,
270 SPI_InitStruct
->DataWidth
| (SPI_InitStruct
->NSS
>> 16U));
272 /*---------------------------- SPIx CRCPR Configuration ----------------------
273 * Configure SPIx CRCPR with parameters:
274 * - CRCPoly: CRCPOLY[15:0] bits
276 if (SPI_InitStruct
->CRCCalculation
== LL_SPI_CRCCALCULATION_ENABLE
)
278 assert_param(IS_LL_SPI_CRC_POLYNOMIAL(SPI_InitStruct
->CRCPoly
));
279 LL_SPI_SetCRCPolynomial(SPIx
, SPI_InitStruct
->CRCPoly
);
284 /* Activate the SPI mode (Reset I2SMOD bit in I2SCFGR register) */
285 CLEAR_BIT(SPIx
->I2SCFGR
, SPI_I2SCFGR_I2SMOD
);
290 * @brief Set each @ref LL_SPI_InitTypeDef field to default value.
291 * @param SPI_InitStruct pointer to a @ref LL_SPI_InitTypeDef structure
292 * whose fields will be set to default values.
295 void LL_SPI_StructInit(LL_SPI_InitTypeDef
*SPI_InitStruct
)
297 /* Set SPI_InitStruct fields to default values */
298 SPI_InitStruct
->TransferDirection
= LL_SPI_FULL_DUPLEX
;
299 SPI_InitStruct
->Mode
= LL_SPI_MODE_SLAVE
;
300 SPI_InitStruct
->DataWidth
= LL_SPI_DATAWIDTH_8BIT
;
301 SPI_InitStruct
->ClockPolarity
= LL_SPI_POLARITY_LOW
;
302 SPI_InitStruct
->ClockPhase
= LL_SPI_PHASE_1EDGE
;
303 SPI_InitStruct
->NSS
= LL_SPI_NSS_HARD_INPUT
;
304 SPI_InitStruct
->BaudRate
= LL_SPI_BAUDRATEPRESCALER_DIV2
;
305 SPI_InitStruct
->BitOrder
= LL_SPI_MSB_FIRST
;
306 SPI_InitStruct
->CRCCalculation
= LL_SPI_CRCCALCULATION_DISABLE
;
307 SPI_InitStruct
->CRCPoly
= 7U;
322 /** @addtogroup I2S_LL
326 /* Private types -------------------------------------------------------------*/
327 /* Private variables ---------------------------------------------------------*/
328 /* Private constants ---------------------------------------------------------*/
329 /** @defgroup I2S_LL_Private_Constants I2S Private Constants
332 /* I2S registers Masks */
333 #define I2S_I2SCFGR_CLEAR_MASK (SPI_I2SCFGR_CHLEN | SPI_I2SCFGR_DATLEN | \
334 SPI_I2SCFGR_CKPOL | SPI_I2SCFGR_I2SSTD | \
335 SPI_I2SCFGR_I2SCFG | SPI_I2SCFGR_I2SMOD )
337 #define I2S_I2SPR_CLEAR_MASK 0x0002U
341 /* Private macros ------------------------------------------------------------*/
342 /** @defgroup I2S_LL_Private_Macros I2S Private Macros
346 #define IS_LL_I2S_DATAFORMAT(__VALUE__) (((__VALUE__) == LL_I2S_DATAFORMAT_16B) \
347 || ((__VALUE__) == LL_I2S_DATAFORMAT_16B_EXTENDED) \
348 || ((__VALUE__) == LL_I2S_DATAFORMAT_24B) \
349 || ((__VALUE__) == LL_I2S_DATAFORMAT_32B))
351 #define IS_LL_I2S_CPOL(__VALUE__) (((__VALUE__) == LL_I2S_POLARITY_LOW) \
352 || ((__VALUE__) == LL_I2S_POLARITY_HIGH))
354 #define IS_LL_I2S_STANDARD(__VALUE__) (((__VALUE__) == LL_I2S_STANDARD_PHILIPS) \
355 || ((__VALUE__) == LL_I2S_STANDARD_MSB) \
356 || ((__VALUE__) == LL_I2S_STANDARD_LSB) \
357 || ((__VALUE__) == LL_I2S_STANDARD_PCM_SHORT) \
358 || ((__VALUE__) == LL_I2S_STANDARD_PCM_LONG))
360 #define IS_LL_I2S_MODE(__VALUE__) (((__VALUE__) == LL_I2S_MODE_SLAVE_TX) \
361 || ((__VALUE__) == LL_I2S_MODE_SLAVE_RX) \
362 || ((__VALUE__) == LL_I2S_MODE_MASTER_TX) \
363 || ((__VALUE__) == LL_I2S_MODE_MASTER_RX))
365 #define IS_LL_I2S_MCLK_OUTPUT(__VALUE__) (((__VALUE__) == LL_I2S_MCLK_OUTPUT_ENABLE) \
366 || ((__VALUE__) == LL_I2S_MCLK_OUTPUT_DISABLE))
368 #define IS_LL_I2S_AUDIO_FREQ(__VALUE__) ((((__VALUE__) >= LL_I2S_AUDIOFREQ_8K) \
369 && ((__VALUE__) <= LL_I2S_AUDIOFREQ_192K)) \
370 || ((__VALUE__) == LL_I2S_AUDIOFREQ_DEFAULT))
372 #define IS_LL_I2S_PRESCALER_LINEAR(__VALUE__) ((__VALUE__) >= 0x2U)
374 #define IS_LL_I2S_PRESCALER_PARITY(__VALUE__) (((__VALUE__) == LL_I2S_PRESCALER_PARITY_EVEN) \
375 || ((__VALUE__) == LL_I2S_PRESCALER_PARITY_ODD))
380 /* Private function prototypes -----------------------------------------------*/
382 /* Exported functions --------------------------------------------------------*/
383 /** @addtogroup I2S_LL_Exported_Functions
387 /** @addtogroup I2S_LL_EF_Init
392 * @brief De-initialize the SPI/I2S registers to their default reset values.
393 * @param SPIx SPI Instance
394 * @retval An ErrorStatus enumeration value:
395 * - SUCCESS: SPI registers are de-initialized
396 * - ERROR: SPI registers are not de-initialized
398 ErrorStatus
LL_I2S_DeInit(SPI_TypeDef
*SPIx
)
400 return LL_SPI_DeInit(SPIx
);
404 * @brief Initializes the SPI/I2S registers according to the specified parameters in I2S_InitStruct.
405 * @note As some bits in SPI configuration registers can only be written when the SPI is disabled (SPI_CR1_SPE bit =0),
406 * SPI peripheral should be in disabled state prior calling this function. Otherwise, ERROR result will be returned.
407 * @param SPIx SPI Instance
408 * @param I2S_InitStruct pointer to a @ref LL_I2S_InitTypeDef structure
409 * @retval An ErrorStatus enumeration value:
410 * - SUCCESS: SPI registers are Initialized
411 * - ERROR: SPI registers are not Initialized
413 ErrorStatus
LL_I2S_Init(SPI_TypeDef
*SPIx
, LL_I2S_InitTypeDef
*I2S_InitStruct
)
415 uint32_t i2sdiv
= 2U, i2sodd
= 0U, packetlength
= 1U;
417 uint32_t sourceclock
;
418 ErrorStatus status
= ERROR
;
420 /* Check the I2S parameters */
421 assert_param(IS_I2S_ALL_INSTANCE(SPIx
));
422 assert_param(IS_LL_I2S_MODE(I2S_InitStruct
->Mode
));
423 assert_param(IS_LL_I2S_STANDARD(I2S_InitStruct
->Standard
));
424 assert_param(IS_LL_I2S_DATAFORMAT(I2S_InitStruct
->DataFormat
));
425 assert_param(IS_LL_I2S_MCLK_OUTPUT(I2S_InitStruct
->MCLKOutput
));
426 assert_param(IS_LL_I2S_AUDIO_FREQ(I2S_InitStruct
->AudioFreq
));
427 assert_param(IS_LL_I2S_CPOL(I2S_InitStruct
->ClockPolarity
));
429 if (LL_I2S_IsEnabled(SPIx
) == 0x00000000U
)
431 /*---------------------------- SPIx I2SCFGR Configuration --------------------
432 * Configure SPIx I2SCFGR with parameters:
433 * - Mode: SPI_I2SCFGR_I2SCFG[1:0] bit
434 * - Standard: SPI_I2SCFGR_I2SSTD[1:0] and SPI_I2SCFGR_PCMSYNC bits
435 * - DataFormat: SPI_I2SCFGR_CHLEN and SPI_I2SCFGR_DATLEN bits
436 * - ClockPolarity: SPI_I2SCFGR_CKPOL bit
439 /* Write to SPIx I2SCFGR */
440 MODIFY_REG(SPIx
->I2SCFGR
,
441 I2S_I2SCFGR_CLEAR_MASK
,
442 I2S_InitStruct
->Mode
| I2S_InitStruct
->Standard
|
443 I2S_InitStruct
->DataFormat
| I2S_InitStruct
->ClockPolarity
|
446 /*---------------------------- SPIx I2SPR Configuration ----------------------
447 * Configure SPIx I2SPR with parameters:
448 * - MCLKOutput: SPI_I2SPR_MCKOE bit
449 * - AudioFreq: SPI_I2SPR_I2SDIV[7:0] and SPI_I2SPR_ODD bits
452 /* If the requested audio frequency is not the default, compute the prescaler (i2sodd, i2sdiv)
453 * else, default values are used: i2sodd = 0U, i2sdiv = 2U.
455 if (I2S_InitStruct
->AudioFreq
!= LL_I2S_AUDIOFREQ_DEFAULT
)
457 /* Check the frame length (For the Prescaler computing)
458 * Default value: LL_I2S_DATAFORMAT_16B (packetlength = 1U).
460 if (I2S_InitStruct
->DataFormat
!= LL_I2S_DATAFORMAT_16B
)
462 /* Packet length is 32 bits */
466 /* If an external I2S clock has to be used, the specific define should be set
467 in the project configuration or in the stm32f7xx_ll_rcc.h file */
468 /* Get the I2S source clock value */
469 sourceclock
= LL_RCC_GetI2SClockFreq(LL_RCC_I2S1_CLKSOURCE
);
471 /* Compute the Real divider depending on the MCLK output state with a floating point */
472 if (I2S_InitStruct
->MCLKOutput
== LL_I2S_MCLK_OUTPUT_ENABLE
)
474 /* MCLK output is enabled */
475 tmp
= (((((sourceclock
/ 256U) * 10U) / I2S_InitStruct
->AudioFreq
)) + 5U);
479 /* MCLK output is disabled */
480 tmp
= (((((sourceclock
/ (32U * packetlength
)) * 10U) / I2S_InitStruct
->AudioFreq
)) + 5U);
483 /* Remove the floating point */
486 /* Check the parity of the divider */
487 i2sodd
= (tmp
& (uint16_t)0x0001U
);
489 /* Compute the i2sdiv prescaler */
490 i2sdiv
= ((tmp
- i2sodd
) / 2U);
492 /* Get the Mask for the Odd bit (SPI_I2SPR[8]) register */
493 i2sodd
= (i2sodd
<< 8U);
496 /* Test if the divider is 1 or 0 or greater than 0xFF */
497 if ((i2sdiv
< 2U) || (i2sdiv
> 0xFFU
))
499 /* Set the default values */
504 /* Write to SPIx I2SPR register the computed value */
505 WRITE_REG(SPIx
->I2SPR
, i2sdiv
| i2sodd
| I2S_InitStruct
->MCLKOutput
);
513 * @brief Set each @ref LL_I2S_InitTypeDef field to default value.
514 * @param I2S_InitStruct pointer to a @ref LL_I2S_InitTypeDef structure
515 * whose fields will be set to default values.
518 void LL_I2S_StructInit(LL_I2S_InitTypeDef
*I2S_InitStruct
)
520 /*--------------- Reset I2S init structure parameters values -----------------*/
521 I2S_InitStruct
->Mode
= LL_I2S_MODE_SLAVE_TX
;
522 I2S_InitStruct
->Standard
= LL_I2S_STANDARD_PHILIPS
;
523 I2S_InitStruct
->DataFormat
= LL_I2S_DATAFORMAT_16B
;
524 I2S_InitStruct
->MCLKOutput
= LL_I2S_MCLK_OUTPUT_DISABLE
;
525 I2S_InitStruct
->AudioFreq
= LL_I2S_AUDIOFREQ_DEFAULT
;
526 I2S_InitStruct
->ClockPolarity
= LL_I2S_POLARITY_LOW
;
530 * @brief Set linear and parity prescaler.
531 * @note To calculate value of PrescalerLinear(I2SDIV[7:0] bits) and PrescalerParity(ODD bit)\n
532 * Check Audio frequency table and formulas inside Reference Manual (SPI/I2S).
533 * @param SPIx SPI Instance
534 * @param PrescalerLinear value Min_Data=0x02 and Max_Data=0xFF.
535 * @param PrescalerParity This parameter can be one of the following values:
536 * @arg @ref LL_I2S_PRESCALER_PARITY_EVEN
537 * @arg @ref LL_I2S_PRESCALER_PARITY_ODD
540 void LL_I2S_ConfigPrescaler(SPI_TypeDef
*SPIx
, uint32_t PrescalerLinear
, uint32_t PrescalerParity
)
542 /* Check the I2S parameters */
543 assert_param(IS_I2S_ALL_INSTANCE(SPIx
));
544 assert_param(IS_LL_I2S_PRESCALER_LINEAR(PrescalerLinear
));
545 assert_param(IS_LL_I2S_PRESCALER_PARITY(PrescalerParity
));
547 /* Write to SPIx I2SPR */
548 MODIFY_REG(SPIx
->I2SPR
, SPI_I2SPR_I2SDIV
| SPI_I2SPR_ODD
, PrescalerLinear
| (PrescalerParity
<< 8U));
563 #endif /* defined (SPI1) || defined (SPI2) || defined (SPI3) || defined (SPI4) || defined (SPI5) || defined(SPI6) */
569 #endif /* USE_FULL_LL_DRIVER */
571 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/