spi.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /**
  2. ******************************************************************************
  3. * File Name : SPI.c
  4. * Description : This file provides code for the configuration
  5. * of the SPI instances.
  6. ******************************************************************************
  7. *
  8. * COPYRIGHT(c) 2016 STMicroelectronics
  9. *
  10. * Redistribution and use in source and binary forms, with or without modification,
  11. * are permitted provided that the following conditions are met:
  12. * 1. Redistributions of source code must retain the above copyright notice,
  13. * this list of conditions and the following disclaimer.
  14. * 2. Redistributions in binary form must reproduce the above copyright notice,
  15. * this list of conditions and the following disclaimer in the documentation
  16. * and/or other materials provided with the distribution.
  17. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  18. * may be used to endorse or promote products derived from this software
  19. * without specific prior written permission.
  20. *
  21. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  22. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  24. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  25. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  27. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  28. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  29. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. *
  32. ******************************************************************************
  33. */
  34. /* Includes ------------------------------------------------------------------*/
  35. #include "spi.h"
  36. #include "gpio.h"
  37. /* USER CODE BEGIN 0 */
  38. /* USER CODE END 0 */
  39. SPI_HandleTypeDef hspi1;
  40. /* SPI1 init function */
  41. void MX_SPI1_Init(void)
  42. {
  43. hspi1.Instance = SPI1;
  44. hspi1.Init.Mode = SPI_MODE_MASTER;
  45. hspi1.Init.Direction = SPI_DIRECTION_2LINES;
  46. hspi1.Init.DataSize = SPI_DATASIZE_8BIT;
  47. hspi1.Init.CLKPolarity = SPI_POLARITY_HIGH;
  48. hspi1.Init.CLKPhase = SPI_PHASE_2EDGE;
  49. hspi1.Init.NSS = SPI_NSS_SOFT;
  50. // (96MHz / 2) / 4 = 12MHz. FPGA device allows up to 25MHz write
  51. hspi1.Init.BaudRatePrescaler = SPI_BAUDRATEPRESCALER_4;
  52. hspi1.Init.FirstBit = SPI_FIRSTBIT_MSB;
  53. hspi1.Init.TIMode = SPI_TIMODE_DISABLED;
  54. hspi1.Init.CRCCalculation = SPI_CRCCALCULATION_DISABLED;
  55. hspi1.Init.CRCPolynomial = 10;
  56. HAL_SPI_Init(&hspi1);
  57. }
  58. void HAL_SPI_MspInit(SPI_HandleTypeDef* hspi)
  59. {
  60. GPIO_InitTypeDef GPIO_InitStruct;
  61. if(hspi->Instance==SPI1)
  62. {
  63. /* USER CODE BEGIN SPI1_MspInit 0 */
  64. /* USER CODE END SPI1_MspInit 0 */
  65. /* Peripheral clock enable */
  66. __SPI1_CLK_ENABLE();
  67. /**SPI1 GPIO Configuration
  68. PA5 ------> SPI1_SCK
  69. PA6 ------> SPI1_MISO
  70. PA7 ------> SPI1_MOSI
  71. */
  72. GPIO_InitStruct.Pin = GPIO_PIN_5|GPIO_PIN_6|GPIO_PIN_7;
  73. GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
  74. GPIO_InitStruct.Pull = GPIO_NOPULL;
  75. GPIO_InitStruct.Speed = GPIO_SPEED_HIGH;
  76. GPIO_InitStruct.Alternate = GPIO_AF5_SPI1;
  77. HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
  78. /* USER CODE BEGIN SPI1_MspInit 1 */
  79. /* USER CODE END SPI1_MspInit 1 */
  80. }
  81. }
  82. void HAL_SPI_MspDeInit(SPI_HandleTypeDef* hspi)
  83. {
  84. if(hspi->Instance==SPI1)
  85. {
  86. /* USER CODE BEGIN SPI1_MspDeInit 0 */
  87. /* USER CODE END SPI1_MspDeInit 0 */
  88. /* Peripheral clock disable */
  89. __SPI1_CLK_DISABLE();
  90. /**SPI1 GPIO Configuration
  91. PA5 ------> SPI1_SCK
  92. PA6 ------> SPI1_MISO
  93. PA7 ------> SPI1_MOSI
  94. */
  95. HAL_GPIO_DeInit(GPIOA, GPIO_PIN_5|GPIO_PIN_6|GPIO_PIN_7);
  96. }
  97. /* USER CODE BEGIN SPI1_MspDeInit 1 */
  98. /* USER CODE END SPI1_MspDeInit 1 */
  99. }
  100. /* USER CODE BEGIN 1 */
  101. /* USER CODE END 1 */
  102. /**
  103. * @}
  104. */
  105. /**
  106. * @}
  107. */
  108. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/