/*! \file main.c \brief I2S master send and slave receive communication use DMA \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 spi1_send_array[arraysize] = {0xB1, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA}; 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 */ gd_eval_led_init(LED2); /* peripheral clock enable */ rcu_config(); /* GPIO config */ gpio_config(); /* DMA config */ dma_config(); /* SPI config */ spi_config(); /* SPI enable */ i2s_enable(SPI2); i2s_enable(SPI1); /* DMA channel enable */ dma_channel_enable(DMA0,DMA_CH4); dma_channel_enable(DMA1,DMA_CH0); /* SPI DMA enable */ spi_dma_enable(SPI2, SPI_DMA_RECEIVE); spi_dma_enable(SPI1, SPI_DMA_TRANSMIT); /* wait DMA transmit complete */ while(!dma_flag_get(DMA0, DMA_CH4, DMA_INTF_FTFIF)); while(!dma_flag_get(DMA1, DMA_CH0, DMA_INTF_FTFIF)); /* compare receive data with send data */ if(memory_compare(spi2_receive_array, spi1_send_array, arraysize)) gd_eval_led_on(LED2); else gd_eval_led_off(LED2); while(1); } /*! \brief configure different peripheral clocks \param[in] none \param[out] none \retval none */ void rcu_config(void) { #ifdef GD32F30X_CL rcu_pll2_config(RCU_PLL2_MUL8); rcu_osci_on(RCU_PLL2_CK); while((RCU_CTL & RCU_CTL_PLL2STB) == 0) { } rcu_i2s1_clock_config(RCU_I2S1SRC_CKPLL2_MUL2); rcu_i2s2_clock_config(RCU_I2S2SRC_CKPLL2_MUL2); #endif rcu_periph_clock_enable(RCU_SPI1); rcu_periph_clock_enable(RCU_SPI2); rcu_periph_clock_enable(RCU_GPIOA); rcu_periph_clock_enable(RCU_GPIOB); rcu_periph_clock_enable(RCU_DMA0); rcu_periph_clock_enable(RCU_DMA1); } /*! \brief configure the GPIO peripheral \param[in] none \param[out] none \retval none */ void gpio_config(void) { /* I2S1 GPIO config: I2S1_WS/PB12, I2S1_CK/PB13, I2S_SD/PB15 */ gpio_init(GPIOB, GPIO_MODE_AF_PP, GPIO_OSPEED_50MHZ, GPIO_PIN_12 | GPIO_PIN_13 |GPIO_PIN_15); /* I2S2 GPIO config: I2S2_WS/PA15, I2S2_CK/PB3, I2S2_SD/PB5 */ gpio_init(GPIOB, GPIO_MODE_IN_FLOATING, GPIO_OSPEED_50MHZ, GPIO_PIN_3 | GPIO_PIN_5); gpio_init(GPIOA, GPIO_MODE_IN_FLOATING, GPIO_OSPEED_50MHZ, GPIO_PIN_15); } /*! \brief configure the DMA peripheral \param[in] none \param[out] none \retval none */ void dma_config(void) { dma_parameter_struct dma_init_struct; /* SPI1 transmit dma config: DMA0,DMA_CH4 */ dma_deinit(DMA0, DMA_CH4); dma_init_struct.periph_addr = (uint32_t)&SPI_DATA(SPI1); dma_init_struct.memory_addr = (uint32_t)spi1_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_CH4, &dma_init_struct); /* configure DMA mode */ dma_circulation_disable(DMA0, DMA_CH4); dma_memory_to_memory_disable(DMA0, DMA_CH4); /* 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_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_i2s_deinit(SPI1); spi_i2s_deinit(SPI2); i2s_init(SPI1, I2S_MODE_MASTERTX, I2S_STD_PHILLIPS, I2S_CKPL_LOW); i2s_psc_config(SPI1, I2S_AUDIOSAMPLE_11K, I2S_FRAMEFORMAT_DT16B_CH16B, I2S_MCKOUT_DISABLE); i2s_init(SPI2, I2S_MODE_SLAVERX, I2S_STD_PHILLIPS, I2S_CKPL_LOW); i2s_psc_config(SPI2, I2S_AUDIOSAMPLE_11K, I2S_FRAMEFORMAT_DT16B_CH16B, I2S_MCKOUT_DISABLE); } /*! \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; }