main.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /*!
  2. \file main.c
  3. \brief SPI fullduplex communication use polling mode
  4. \version 2017-02-10, V1.0.0, firmware for GD32F30x
  5. \version 2018-10-10, V1.1.0, firmware for GD32F30x
  6. \version 2018-12-25, V2.0.0, firmware for GD32F30x
  7. \version 2020-09-30, V2.1.0, firmware for GD32F30x
  8. */
  9. /*
  10. Copyright (c) 2020, GigaDevice Semiconductor Inc.
  11. Redistribution and use in source and binary forms, with or without modification,
  12. are permitted provided that the following conditions are met:
  13. 1. Redistributions of source code must retain the above copyright notice, this
  14. list of conditions and the following disclaimer.
  15. 2. Redistributions in binary form must reproduce the above copyright notice,
  16. this list of conditions and the following disclaimer in the documentation
  17. and/or other materials provided with the distribution.
  18. 3. Neither the name of the copyright holder nor the names of its contributors
  19. may be used to endorse or promote products derived from this software without
  20. specific prior written permission.
  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 IMPLIED
  23. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  24. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  25. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  26. NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  27. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  28. WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  29. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  30. OF SUCH DAMAGE.
  31. */
  32. #include "gd32f30x.h"
  33. #include "gd32f307c_eval.h"
  34. #define SPI_CRC_ENABLE 0
  35. #define ARRAYSIZE 10
  36. #define SET_SPI0_NSS_HIGH gpio_bit_set(GPIOA,GPIO_PIN_3);
  37. #define SET_SPI0_NSS_LOW gpio_bit_reset(GPIOA,GPIO_PIN_3);
  38. uint32_t send_n = 0, receive_n = 0;
  39. uint32_t crc_value1 = 0, crc_value2 = 0;
  40. uint8_t spi0_send_array[ARRAYSIZE] = {0xA1, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA};
  41. uint8_t spi2_send_array[ARRAYSIZE] = {0xB1, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA};
  42. uint8_t spi0_receive_array[ARRAYSIZE];
  43. uint8_t spi2_receive_array[ARRAYSIZE];
  44. ErrStatus memory_compare(uint8_t* src, uint8_t* dst, uint8_t length);
  45. void rcu_config(void);
  46. void gpio_config(void);
  47. void spi_config(void);
  48. /*!
  49. \brief main function
  50. \param[in] none
  51. \param[out] none
  52. \retval none
  53. */
  54. int main(void)
  55. {
  56. /* init led2 and led3 */
  57. gd_eval_led_init(LED2);
  58. gd_eval_led_init(LED3);
  59. /* peripheral clock enable */
  60. rcu_config();
  61. /* GPIO config */
  62. gpio_config();
  63. /* SPI config */
  64. spi_config();
  65. SET_SPI0_NSS_HIGH
  66. /* SPI enable */
  67. spi_enable(SPI2);
  68. spi_enable(SPI0);
  69. SET_SPI0_NSS_LOW
  70. #if SPI_CRC_ENABLE
  71. /* wait for transmit completed */
  72. while(send_n < (ARRAYSIZE - 1)) {
  73. while(RESET == spi_i2s_flag_get(SPI2, SPI_FLAG_TBE)) {
  74. }
  75. spi_i2s_data_transmit(SPI2, spi2_send_array[send_n]);
  76. while(RESET == spi_i2s_flag_get(SPI0, SPI_FLAG_TBE)) {
  77. }
  78. spi_i2s_data_transmit(SPI0, spi0_send_array[send_n++]);
  79. while(RESET == spi_i2s_flag_get(SPI2, SPI_FLAG_RBNE)) {
  80. }
  81. spi2_receive_array[receive_n] = spi_i2s_data_receive(SPI2);
  82. while(RESET == spi_i2s_flag_get(SPI0, SPI_FLAG_RBNE)) {
  83. }
  84. spi0_receive_array[receive_n++] = spi_i2s_data_receive(SPI0);
  85. }
  86. /* send the last data */
  87. while(RESET == spi_i2s_flag_get(SPI2, SPI_FLAG_TBE)) {
  88. }
  89. spi_i2s_data_transmit(SPI2, spi2_send_array[send_n]);
  90. while(RESET == spi_i2s_flag_get(SPI0, SPI_FLAG_TBE)) {
  91. }
  92. spi_i2s_data_transmit(SPI0, spi0_send_array[send_n++]);
  93. /* send the CRC value */
  94. spi_crc_next(SPI2);
  95. spi_crc_next(SPI0);
  96. /* receive the last data */
  97. while(RESET == spi_i2s_flag_get(SPI0, SPI_FLAG_RBNE)) {
  98. }
  99. spi0_receive_array[receive_n] = spi_i2s_data_receive(SPI0);
  100. while(RESET == spi_i2s_flag_get(SPI2, SPI_FLAG_RBNE)) {
  101. }
  102. spi2_receive_array[receive_n++] = spi_i2s_data_receive(SPI2);
  103. /* receive the CRC value */
  104. while(RESET == spi_i2s_flag_get(SPI0, SPI_FLAG_RBNE)) {
  105. }
  106. while(RESET == spi_i2s_flag_get(SPI2, SPI_FLAG_RBNE)) {
  107. }
  108. crc_value1 = spi_i2s_data_receive(SPI0);
  109. crc_value2 = spi_i2s_data_receive(SPI2);
  110. SET_SPI0_NSS_HIGH
  111. /* check the CRC error status */
  112. if(SET != spi_i2s_flag_get(SPI0, SPI_FLAG_CRCERR)) {
  113. gd_eval_led_on(LED2);
  114. } else {
  115. gd_eval_led_off(LED2);
  116. }
  117. if(SET != spi_i2s_flag_get(SPI2, SPI_FLAG_CRCERR)) {
  118. gd_eval_led_on(LED3);
  119. } else {
  120. gd_eval_led_off(LED3);
  121. }
  122. #else
  123. /* wait for transmit complete */
  124. while(send_n < ARRAYSIZE){
  125. while(RESET == spi_i2s_flag_get(SPI2, SPI_FLAG_TBE));
  126. spi_i2s_data_transmit(SPI2, spi2_send_array[send_n]);
  127. while(RESET == spi_i2s_flag_get(SPI0, SPI_FLAG_TBE));
  128. spi_i2s_data_transmit(SPI0, spi0_send_array[send_n++]);
  129. while(RESET == spi_i2s_flag_get(SPI2, SPI_FLAG_RBNE));
  130. spi2_receive_array[receive_n] = spi_i2s_data_receive(SPI2);
  131. while(RESET == spi_i2s_flag_get(SPI0, SPI_FLAG_RBNE));
  132. spi0_receive_array[receive_n++] = spi_i2s_data_receive(SPI0);
  133. }
  134. SET_SPI0_NSS_HIGH
  135. /* compare receive data with send data */
  136. if(memory_compare(spi2_receive_array, spi0_send_array, ARRAYSIZE)) {
  137. gd_eval_led_on(LED2);
  138. } else {
  139. gd_eval_led_off(LED2);
  140. }
  141. if(memory_compare(spi0_receive_array, spi2_send_array, ARRAYSIZE)) {
  142. gd_eval_led_on(LED3);
  143. } else {
  144. gd_eval_led_off(LED3);
  145. }
  146. #endif /* enable CRC function */
  147. while(1);
  148. }
  149. /*!
  150. \brief configure different peripheral clocks
  151. \param[in] none
  152. \param[out] none
  153. \retval none
  154. */
  155. void rcu_config(void)
  156. {
  157. rcu_periph_clock_enable(RCU_GPIOA);
  158. rcu_periph_clock_enable(RCU_GPIOC);
  159. rcu_periph_clock_enable(RCU_SPI0);
  160. rcu_periph_clock_enable(RCU_SPI2);
  161. rcu_periph_clock_enable(RCU_AF);
  162. }
  163. /*!
  164. \brief configure the GPIO peripheral
  165. \param[in] none
  166. \param[out] none
  167. \retval none
  168. */
  169. void gpio_config(void)
  170. {
  171. /* SPI0 GPIO config:SCK/PA5, MISO/PA6, MOSI/PA7 */
  172. gpio_init(GPIOA, GPIO_MODE_AF_PP, GPIO_OSPEED_50MHZ, GPIO_PIN_5 | GPIO_PIN_7);
  173. gpio_init(GPIOA, GPIO_MODE_IN_FLOATING, GPIO_OSPEED_50MHZ, GPIO_PIN_6);
  174. /* PA3 as NSS */
  175. gpio_init(GPIOA, GPIO_MODE_OUT_PP, GPIO_OSPEED_50MHZ, GPIO_PIN_3);
  176. gpio_pin_remap_config(GPIO_SPI2_REMAP, ENABLE);
  177. /* SPI2 GPIO config: NSS/PA4, SCK/PC10, MISO/PC11, MOSI/PC12 */
  178. gpio_init(GPIOC, GPIO_MODE_IN_FLOATING, GPIO_OSPEED_50MHZ, GPIO_PIN_10 | GPIO_PIN_12);
  179. gpio_init(GPIOC, GPIO_MODE_AF_PP, GPIO_OSPEED_50MHZ, GPIO_PIN_11);
  180. gpio_init(GPIOA, GPIO_MODE_IN_FLOATING, GPIO_OSPEED_50MHZ, GPIO_PIN_4);
  181. }
  182. /*!
  183. \brief configure the SPI peripheral
  184. \param[in] none
  185. \param[out] none
  186. \retval none
  187. */
  188. void spi_config(void)
  189. {
  190. spi_parameter_struct spi_init_struct;
  191. /* SPI0 parameter config */
  192. spi_init_struct.trans_mode = SPI_TRANSMODE_FULLDUPLEX;
  193. spi_init_struct.device_mode = SPI_MASTER;
  194. spi_init_struct.frame_size = SPI_FRAMESIZE_8BIT;
  195. spi_init_struct.clock_polarity_phase = SPI_CK_PL_LOW_PH_1EDGE;
  196. spi_init_struct.nss = SPI_NSS_SOFT;
  197. spi_init_struct.prescale = SPI_PSC_256;
  198. spi_init_struct.endian = SPI_ENDIAN_MSB;
  199. spi_init(SPI0, &spi_init_struct);
  200. /* SPI2 parameter config */
  201. spi_init_struct.device_mode = SPI_SLAVE;
  202. spi_init_struct.nss = SPI_NSS_HARD;
  203. spi_init(SPI2, &spi_init_struct);
  204. #if SPI_CRC_ENABLE
  205. /* configure SPI CRC function */
  206. spi_crc_polynomial_set(SPI0, 7);
  207. spi_crc_polynomial_set(SPI2, 7);
  208. spi_crc_on(SPI0);
  209. spi_crc_on(SPI2);
  210. #endif /* enable CRC function */
  211. }
  212. /*!
  213. \brief memory compare function
  214. \param[in] src: source data pointer
  215. \param[in] dst: destination data pointer
  216. \param[in] length: the compare data length
  217. \param[out] none
  218. \retval ErrStatus: ERROR or SUCCESS
  219. */
  220. ErrStatus memory_compare(uint8_t* src, uint8_t* dst, uint8_t length)
  221. {
  222. while (length--){
  223. if (*src++ != *dst++)
  224. return ERROR;
  225. }
  226. return SUCCESS;
  227. }