123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- /*!
- \file main.c
- \brief SPI master and slave fullduplex communication with ti mode
- \version 2017-02-10, V1.0.0, firmware for GD32F30x
- \version 2018-10-10, V1.1.0, firmware for GD32F30x
- \version 2018-12-25, V2.0.0, firmware for GD32F30x
- \version 2020-09-30, V2.1.0, firmware for GD32F30x
- */
- /*
- Copyright (c) 2020, GigaDevice Semiconductor Inc.
- Redistribution and use in source and binary forms, with or without modification,
- are permitted provided that the following conditions are met:
- 1. Redistributions of source code must retain the above copyright notice, this
- list of conditions and the following disclaimer.
- 2. Redistributions in binary form must reproduce the above copyright notice,
- this list of conditions and the following disclaimer in the documentation
- and/or other materials provided with the distribution.
- 3. Neither the name of the copyright holder nor the names of its contributors
- may be used to endorse or promote products derived from this software without
- specific prior written permission.
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
- INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
- WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
- OF SUCH DAMAGE.
- */
- #include "gd32f30x.h"
- #include "gd32f307c_eval.h"
- #define arraysize 10
- uint8_t spi0_send_array[arraysize] = {0xA1, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA};
- uint8_t spi2_send_array[arraysize] = {0xB1, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA};
- uint8_t spi0_receive_array[arraysize];
- uint8_t spi2_receive_array[arraysize];
- ErrStatus memory_compare(uint8_t* src, uint8_t* dst, uint8_t length);
- void rcu_config(void);
- void gpio_config(void);
- void dma_config(void);
- void spi_config(void);
- /*!
- \brief main function
- \param[in] none
- \param[out] none
- \retval none
- */
- int main(void)
- {
- /* init led2 and led3 */
- gd_eval_led_init(LED2);
- gd_eval_led_init(LED3);
- /* peripheral clock enable */
- rcu_config();
- /* GPIO config */
- gpio_config();
- /* DMA config */
- dma_config();
- /* SPI config */
- spi_config();
-
- /* SPI ti mode enable */
- spi_ti_mode_enable(SPI2);
- spi_ti_mode_enable(SPI0);
- /* SPI enable */
- spi_enable(SPI2);
- spi_enable(SPI0);
- /* DMA channel enable */
- dma_channel_enable(DMA0, DMA_CH1);
- dma_channel_enable(DMA0, DMA_CH2);
- dma_channel_enable(DMA1, DMA_CH0);
- dma_channel_enable(DMA1, DMA_CH1);
- /* SPI DMA enable */
- spi_dma_enable(SPI2, SPI_DMA_TRANSMIT);
- spi_dma_enable(SPI2, SPI_DMA_RECEIVE);
- spi_dma_enable(SPI0, SPI_DMA_TRANSMIT);
- spi_dma_enable(SPI0, SPI_DMA_RECEIVE);
- /* wait dma transmit complete */
- while(!dma_flag_get(DMA0,DMA_CH2,DMA_INTF_FTFIF));
- while(!dma_flag_get(DMA1,DMA_CH1,DMA_INTF_FTFIF));
- while(!dma_flag_get(DMA1,DMA_CH0,DMA_INTF_FTFIF));
- while(!dma_flag_get(DMA0,DMA_CH1,DMA_INTF_FTFIF));
- /* compare receive data with send data */
- if(memory_compare(spi2_receive_array, spi0_send_array, arraysize))
- gd_eval_led_on(LED2);
- else
- gd_eval_led_off(LED2);
- if(memory_compare(spi0_receive_array, spi2_send_array, arraysize))
- gd_eval_led_on(LED3);
- else
- gd_eval_led_off(LED3);
- while(1);
- }
- /*!
- \brief configure different peripheral clocks
- \param[in] none
- \param[out] none
- \retval none
- */
- void rcu_config(void)
- {
- rcu_periph_clock_enable(RCU_GPIOA);
- rcu_periph_clock_enable(RCU_GPIOB);
- rcu_periph_clock_enable(RCU_GPIOC);
- rcu_periph_clock_enable(RCU_DMA0);
- rcu_periph_clock_enable(RCU_DMA1);
- rcu_periph_clock_enable(RCU_SPI0);
- rcu_periph_clock_enable(RCU_SPI2);
- rcu_periph_clock_enable(RCU_AF);
- }
- /*!
- \brief configure the GPIO peripheral
- \param[in] none
- \param[out] none
- \retval none
- */
- void gpio_config(void)
- {
- /* JTAG-DP disabled and SW-DP enabled, so SPI0 can use PB3 and PB4 */
- gpio_pin_remap_config(GPIO_SWJ_SWDPENABLE_REMAP,ENABLE);
- gpio_pin_remap_config(GPIO_SPI0_REMAP, ENABLE);
- /* SPI0 GPIO config: NSS/PA15, SCK/PB3, MOSI/PB5 */
- gpio_init(GPIOA, GPIO_MODE_AF_PP, GPIO_OSPEED_50MHZ, GPIO_PIN_15);
- gpio_init(GPIOB, GPIO_MODE_AF_PP, GPIO_OSPEED_50MHZ, GPIO_PIN_3 | GPIO_PIN_5);
- /* SPI0 GPIO config: MISO/PB4 */
- gpio_init(GPIOB, GPIO_MODE_IN_FLOATING, GPIO_OSPEED_50MHZ, GPIO_PIN_4);
-
- gpio_pin_remap_config(GPIO_SPI2_REMAP, ENABLE);
- /* SPI2 GPIO config: NSS/PA4 */
- gpio_init(GPIOA, GPIO_MODE_IN_FLOATING, GPIO_OSPEED_50MHZ, GPIO_PIN_4);
- /* SPI2 GPIO config: SCK/PC10, MOSI/PC12 */
- gpio_init(GPIOC, GPIO_MODE_IN_FLOATING, GPIO_OSPEED_50MHZ, GPIO_PIN_10 |GPIO_PIN_12);
- /* SPI2 GPIO config: MISO/PC11 */
- gpio_init(GPIOC, GPIO_MODE_AF_PP, GPIO_OSPEED_50MHZ, GPIO_PIN_11);
- }
- /*!
- \brief configure the DMA peripheral
- \param[in] none
- \param[out] none
- \retval none
- */
- void dma_config(void)
- {
- dma_parameter_struct dma_init_struct;
-
- /* SPI0 transmit dma config:DMA0-DMA_CH2 */
- dma_deinit(DMA0, DMA_CH2);
- dma_init_struct.periph_addr = (uint32_t)&SPI_DATA(SPI0);
- dma_init_struct.memory_addr = (uint32_t)spi0_send_array;
- dma_init_struct.direction = DMA_MEMORY_TO_PERIPHERAL;
- dma_init_struct.memory_width = DMA_MEMORY_WIDTH_8BIT;
- dma_init_struct.periph_width = DMA_PERIPHERAL_WIDTH_8BIT;
- dma_init_struct.priority = DMA_PRIORITY_LOW;
- dma_init_struct.number = arraysize;
- dma_init_struct.periph_inc = DMA_PERIPH_INCREASE_DISABLE;
- dma_init_struct.memory_inc = DMA_MEMORY_INCREASE_ENABLE;
- dma_init(DMA0, DMA_CH2, &dma_init_struct);
- /* configure DMA mode */
- dma_circulation_disable(DMA0, DMA_CH2);
- dma_memory_to_memory_disable(DMA0, DMA_CH2);
- /* SPI0 receive dma config:DMA0-DMA_CH1 */
- dma_deinit(DMA0, DMA_CH1);
- dma_init_struct.periph_addr = (uint32_t)&SPI_DATA(SPI0);
- dma_init_struct.memory_addr = (uint32_t)spi0_receive_array;
- dma_init_struct.direction = DMA_PERIPHERAL_TO_MEMORY;
- dma_init_struct.priority = DMA_PRIORITY_HIGH;
- dma_init(DMA0, DMA_CH1, &dma_init_struct);
- /* configure DMA mode */
- dma_circulation_disable(DMA0, DMA_CH1);
- dma_memory_to_memory_disable(DMA0, DMA_CH1);
- /* SPI2 transmit dma config:DMA1,DMA_CH1 */
- dma_deinit(DMA1, DMA_CH1);
- dma_init_struct.periph_addr = (uint32_t)&SPI_DATA(SPI2);
- dma_init_struct.memory_addr = (uint32_t)spi2_send_array;
- dma_init_struct.direction = DMA_MEMORY_TO_PERIPHERAL;
- dma_init_struct.priority = DMA_PRIORITY_MEDIUM;
- dma_init(DMA1, DMA_CH1, &dma_init_struct);
- /* configure DMA mode */
- dma_circulation_disable(DMA1, DMA_CH1);
- dma_memory_to_memory_disable(DMA1, DMA_CH1);
- /* SPI2 receive dma config:DMA1,DMA_CH0 */
- dma_deinit(DMA1, DMA_CH0);
- dma_init_struct.periph_addr = (uint32_t)&SPI_DATA(SPI2);
- dma_init_struct.memory_addr = (uint32_t)spi2_receive_array;
- dma_init_struct.direction = DMA_PERIPHERAL_TO_MEMORY;
- dma_init_struct.priority = DMA_PRIORITY_ULTRA_HIGH;
- dma_init(DMA1, DMA_CH0, &dma_init_struct);
- /* configure DMA mode */
- dma_circulation_disable(DMA1, DMA_CH0);
- dma_memory_to_memory_disable(DMA1, DMA_CH0);
- }
- /*!
- \brief configure the SPI peripheral
- \param[in] none
- \param[out] none
- \retval none
- */
- void spi_config(void)
- {
- spi_parameter_struct spi_init_struct;
- /* SPI0 parameter config */
- spi_init_struct.trans_mode = SPI_TRANSMODE_FULLDUPLEX;
- spi_init_struct.device_mode = SPI_MASTER;
- spi_init_struct.frame_size = SPI_FRAMESIZE_8BIT;
- spi_init_struct.clock_polarity_phase = SPI_CK_PL_HIGH_PH_2EDGE;
- spi_init_struct.nss = SPI_NSS_HARD;
- spi_init_struct.prescale = SPI_PSC_16;
- spi_init_struct.endian = SPI_ENDIAN_MSB;
- spi_init(SPI0, &spi_init_struct);
- /* SPI2 parameter config */
- spi_init_struct.trans_mode = SPI_TRANSMODE_FULLDUPLEX;
- spi_init_struct.device_mode = SPI_SLAVE;
- spi_init_struct.nss = SPI_NSS_HARD;
- spi_init_struct.prescale = SPI_PSC_16;
- spi_init(SPI2, &spi_init_struct);
- }
- /*!
- \brief memory compare function
- \param[in] src: source data pointer
- \param[in] dst: destination data pointer
- \param[in] length: the compare data length
- \param[out] none
- \retval ErrStatus : ERROR or SUCCESS
- */
- ErrStatus memory_compare(uint8_t* src, uint8_t* dst, uint8_t length)
- {
- while(length--){
- if(*src++ != *dst++)
- return ERROR;
- }
- return SUCCESS;
- }
|