| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- /*!
- \file main.c
- \brief transfer data from RAM to RAM
- */
- /*
- Copyright (C) 2017 GigaDevice
- 2017-06-06, V1.0.0, firmware for GD32F3x0
- */
- #include "gd32f3x0.h"
- #include "gd32f3x0_eval.h"
- #include <string.h>
- #define DATANUM 16
- __IO uint8_t g_dmacomplete_flag = 0;
- ErrStatus transferflag1 = ERROR;
- ErrStatus transferflag2 = ERROR;
- ErrStatus transferflag3 = ERROR;
- ErrStatus transferflag4 = ERROR;
- uint8_t source_address[DATANUM]= {0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,
- 0x09,0x0A,0x0B,0x0C,0x0D,0x0E,0x0F,0x10};
- uint8_t destination_address1[DATANUM];
- uint8_t destination_address2[DATANUM];
- uint8_t destination_address3[DATANUM];
- uint8_t destination_address4[DATANUM];
- void destbuf_init(void);
- void led_config(void);
- void nvic_config(void);
- ErrStatus uc_data_compare(uint8_t* src, uint8_t* dst, uint16_t length);
- /*!
- \brief main function
- \param[in] none
- \param[out] none
- \retval none
- */
- int main(void)
- {
- dma_parameter_struct dma_init_struct;
-
- /* enable DMA clock */
- rcu_periph_clock_enable(RCU_DMA);
- /* initialize LED */
- led_config();
- /* initialize NVIC */
- nvic_config();
- /* all LED off */
- gd_eval_led_off(LED1);
- gd_eval_led_off(LED3);
- gd_eval_led_off(LED2);
- gd_eval_led_off(LED4);
-
- destbuf_init();
- /* initialize DMA channel1 */
- dma_deinit(DMA_CH1);
-
- dma_init_struct.direction = DMA_PERIPHERAL_TO_MEMORY;
- dma_init_struct.memory_addr = (uint32_t)destination_address1;
- dma_init_struct.memory_inc = DMA_MEMORY_INCREASE_ENABLE;
- dma_init_struct.memory_width = DMA_MEMORY_WIDTH_8BIT;
- dma_init_struct.number = DATANUM;
- dma_init_struct.periph_addr = (uint32_t)source_address;
- dma_init_struct.periph_inc = DMA_PERIPH_INCREASE_ENABLE;
- dma_init_struct.periph_width = DMA_PERIPHERAL_WIDTH_8BIT;
- dma_init_struct.priority = DMA_PRIORITY_ULTRA_HIGH;
- dma_init(DMA_CH1, dma_init_struct);
- /* configure DMA mode */
- dma_circulation_disable(DMA_CH1);
- dma_memory_to_memory_enable(DMA_CH1);
-
- /* initialize DMA channel2 */
- dma_deinit(DMA_CH2);
- dma_init_struct.memory_addr = (uint32_t)destination_address2;
- dma_init(DMA_CH2, dma_init_struct);
- /* configure DMA mode */
- dma_circulation_disable(DMA_CH2);
- dma_memory_to_memory_enable(DMA_CH2);
-
- /* initialize DMA channel3 */
- dma_deinit(DMA_CH3);
- dma_init_struct.memory_addr = (uint32_t)destination_address3;
- dma_init(DMA_CH3, dma_init_struct);
- /* configure DMA mode */
- dma_circulation_disable(DMA_CH3);
- dma_memory_to_memory_enable(DMA_CH3);
-
- /* initialize DMA channel4 */
- dma_deinit(DMA_CH4);
- dma_init_struct.memory_addr = (uint32_t)destination_address4;
- dma_init(DMA_CH4, dma_init_struct);
- /* configure DMA mode */
- dma_circulation_disable(DMA_CH4);
- dma_memory_to_memory_enable(DMA_CH4);
-
- /* DMA channel1~channel4 interrupt enable */
- dma_interrupt_enable(DMA_CH1, DMA_INT_FTF);
- dma_interrupt_enable(DMA_CH2, DMA_INT_FTF);
- dma_interrupt_enable(DMA_CH3, DMA_INT_FTF);
- dma_interrupt_enable(DMA_CH4, DMA_INT_FTF);
-
- /* enable DMA channel1~channel4 */
- dma_channel_enable(DMA_CH1);
- dma_channel_enable(DMA_CH2);
- dma_channel_enable(DMA_CH3);
- dma_channel_enable(DMA_CH4);
- /* wait for DMA transfer complete */
- while(0x0f != g_dmacomplete_flag);
-
- /* compare the data of source_address with data of destination_address */
- transferflag1 = uc_data_compare(source_address, destination_address1, DATANUM);
- transferflag2 = uc_data_compare(source_address, destination_address2, DATANUM);
- transferflag3 = uc_data_compare(source_address, destination_address3, DATANUM);
- transferflag4 = uc_data_compare(source_address, destination_address4, DATANUM);
- /* if DMA channel1 transfer success,light LED1 */
- if(SUCCESS == transferflag1){
- gd_eval_led_on(LED1);
- }
- /* if DMA channel2 transfer success,light LED2 */
- if(SUCCESS == transferflag2){
- gd_eval_led_on(LED2);
- }
- /* if DMA channel3 transfer success,light LED3 */
- if(SUCCESS == transferflag3){
- gd_eval_led_on(LED3);
- }
- /* if DMA channel4 transfer success,light LED4 */
- if(SUCCESS == transferflag4){
- gd_eval_led_on(LED4);
- }
-
- while (1);
- }
- /*!
- \brief initialize destination buffer
- \param[in] none
- \param[out] none
- \retval none
- */
- void destbuf_init(void)
- {
- memset(destination_address1, 0, DATANUM);
- memset(destination_address2, 0, DATANUM);
- memset(destination_address3, 0, DATANUM);
- memset(destination_address4, 0, DATANUM);
- }
- /*!
- \brief LEDs configure
- \param[in] none
- \param[out] none
- \retval none
- */
- void led_config(void)
- {
- gd_eval_led_init (LED1);
- gd_eval_led_init (LED2);
- gd_eval_led_init (LED3);
- gd_eval_led_init (LED4);
- }
- /*!
- \brief data compare function
- \param[in] src : source data
- \param[in] dst : destination data
- \param[in] length : the compare data length
- \param[out] none
- \retval ErrStatus : ERROR or SUCCESS
- */
- ErrStatus uc_data_compare(uint8_t* src, uint8_t* dst, uint16_t length)
- {
- while (length--){
- if (*src++ != *dst++){
- return ERROR;
- }
- }
- return SUCCESS;
- }
- /*!
- \brief configure the nested vectored interrupt controller
- \param[in] none
- \param[out] none
- \retval none
- */
- void nvic_config(void)
- {
- nvic_irq_enable(DMA_Channel1_2_IRQn, 0, 0);
- nvic_irq_enable(DMA_Channel3_4_IRQn, 0, 0);
- }
|