[Add] First commit

This commit is contained in:
gaoyang3513
2023-05-18 18:53:00 +08:00
commit 179cffc2c1
6607 changed files with 2163514 additions and 0 deletions

View File

@ -0,0 +1,69 @@
/*!
\file gd32w51x_libopt.h
\brief library optional for gd32w51x
\version 2021-10-30, V1.0.0, firmware for GD32W51x
*/
/*
Copyright (c) 2021, 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.
*/
#ifndef GD32W51X_LIBOPT_H
#define GD32W51X_LIBOPT_H
#include "gd32w51x_adc.h"
#include "gd32w51x_cau.h"
#include "gd32w51x_crc.h"
#include "gd32w51x_dbg.h"
#include "gd32w51x_dci.h"
#include "gd32w51x_dma.h"
#include "gd32w51x_exti.h"
#include "gd32w51x_fmc.h"
#include "gd32w51x_fwdgt.h"
#include "gd32w51x_gpio.h"
#include "gd32w51x_hau.h"
#include "gd32w51x_hpdf.h"
#include "gd32w51x_i2c.h"
#include "gd32w51x_icache.h"
#include "gd32w51x_misc.h"
#include "gd32w51x_pkcau.h"
#include "gd32w51x_pmu.h"
#include "gd32w51x_qspi.h"
#include "gd32w51x_rcu.h"
#include "gd32w51x_rtc.h"
#include "gd32w51x_sdio.h"
#include "gd32w51x_spi.h"
#include "gd32w51x_sqpi.h"
#include "gd32w51x_syscfg.h"
#include "gd32w51x_timer.h"
#include "gd32w51x_trng.h"
#include "gd32w51x_tsi.h"
#include "gd32w51x_tzpcu.h"
#include "gd32w51x_usart.h"
#include "gd32w51x_wwdgt.h"
#endif /* GD32W51X_LIBOPT_H */

View File

@ -0,0 +1,160 @@
/*!
\file main.c
\brief DMA transfer data from RAM to RAM
\version 2021-10-30, V1.0.0, firmware for GD32W51x
*/
/*
Copyright (c) 2021, 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 "gd32w51x.h"
#include <stdio.h>
#include "gd32w515p_eval.h"
#define BUFFER_SIZE (256U)
static void led_config(void);
static void fill_buffer_size(void);
static void dma_config(void);
static ErrStatus memory_compare(uint16_t* src, uint16_t* dst, uint16_t length);
uint16_t source[BUFFER_SIZE];
uint16_t destination[BUFFER_SIZE];
ErrStatus status;
/*!
\brief main function
\param[in] none
\param[out] none
\retval none
*/
int main(void)
{
/* LED initialize */
led_config();
/* fill the buffer with specified value */
fill_buffer_size();
/* configure the DMA channel */
dma_config();
/* wait for DMA transfer to complete */
while(!dma_flag_get(DMA1,DMA_CH0, DMA_FLAG_FTF));
/* compare data */
status = memory_compare((uint16_t *)source, (uint16_t *)destination, BUFFER_SIZE);
if(SUCCESS == status){
gd_eval_led_on(LED1);
}else{
gd_eval_led_on(LED3);
}
while(1);
}
/*!
\brief configure LED
\param[in] none
\param[out] none
\retval none
*/
static void led_config(void)
{
/* LED initialize */
gd_eval_led_init(LED1);
gd_eval_led_init(LED3);
}
/*!
\brief fill the buffer with specified value
\param[in] none
\param[out] none
\retval none
*/
static void fill_buffer_size(void)
{
uint32_t i;
for(i=0;i < BUFFER_SIZE;i++){
source[i] = i;
}
}
/*!
\brief configure the DMA channel
\param[in] none
\param[out] none
\retval none
*/
static void dma_config(void)
{
dma_multi_data_parameter_struct dma_init_parameter;
dma_multi_data_para_struct_init(&dma_init_parameter);
/* peripheral clock enable */
rcu_periph_clock_enable(RCU_DMA1);
/* DMA peripheral configure */
dma_deinit(DMA1, DMA_CH0);
dma_init_parameter.periph_addr = (uint32_t)source;
dma_init_parameter.periph_width = DMA_PERIPH_WIDTH_16BIT;
dma_init_parameter.periph_inc = DMA_PERIPH_INCREASE_ENABLE;
dma_init_parameter.memory0_addr = (uint32_t)destination;
dma_init_parameter.memory_width = DMA_MEMORY_WIDTH_16BIT;
dma_init_parameter.memory_inc = DMA_MEMORY_INCREASE_ENABLE;
dma_init_parameter.memory_burst_width = DMA_MEMORY_BURST_4_BEAT;
dma_init_parameter.periph_burst_width = DMA_PERIPH_BURST_4_BEAT;
dma_init_parameter.critical_value = DMA_FIFO_2_WORD;
dma_init_parameter.circular_mode = DMA_CIRCULAR_MODE_DISABLE;
dma_init_parameter.direction = DMA_MEMORY_TO_MEMORY;
dma_init_parameter.number = BUFFER_SIZE;
dma_init_parameter.priority = DMA_PRIORITY_ULTRA_HIGH;
dma_multi_data_mode_init(DMA1,DMA_CH0, &dma_init_parameter);
/* enable DMA channel */
dma_channel_enable(DMA1, DMA_CH0);
}
/*!
\brief memory 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 memory_compare(uint16_t* src, uint16_t* dst, uint16_t length)
{
while (length--){
if (*src++ != *dst++){
return ERROR;
}
}
return SUCCESS;
}

View File

@ -0,0 +1,39 @@
/*!
\file readme.txt
\brief Description of the DMA mutiple data transfer demo
\version 2021-10-30, V1.0.0, firmware for GD32W51x
*/
/*
Copyright (c) 2021, 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.
*/
This demo is based on the GD32W515P-EVAL-V1.0 board, it shows how to use DMA mutiple data
transfer mode.
This demo shows how to configure DMA, transfer data from memory to memory(only for DMA1).
If the operation successfully, LED1 will be turned on. Otherwise, LED3 will be turned on.