资源简介
GD32F130的例程包,还有Keil 5的工程包,一整套 。与STM32一样也是ARM3内核,引脚基本一样,核心板也是通用,只需将芯片替换,完美使用。
代码片段和文件信息
/*!
\file gd32f1x0_it.c
\brief interrupt service routines
\version 2016-01-15 V1.0.0 demo for GD32F1x0
\version 2016-05-13 V2.0.0 demo for GD32F1x0
\version 2019-11-20 V3.0.0 demo for GD32F1x0
*/
/*
Copyright (c) 2019 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 “gd32f1x0_it.h“
#include “systick.h“
/*!
\brief this function handles NMI exception
\param[in] none
\param[out] none
\retval none
*/
void NMI_Handler(void)
{
}
/*!
\brief this function handles HardFault exception
\param[in] none
\param[out] none
\retval none
*/
void HardFault_Handler(void)
{
/* if Hard Fault exception occurs go to infinite loop */
while (1){
}
}
/*!
\brief this function handles MemManage exception
\param[in] none
\param[out] none
\retval none
*/
void MemManage_Handler(void)
{
/* if Memory Manage exception occurs go to infinite loop */
while (1){
}
}
/*!
\brief this function handles BusFault exception
\param[in] none
\param[out] none
\retval none
*/
void BusFault_Handler(void)
{
/* if Bus Fault exception occurs go to infinite loop */
while (1){
}
}
/*!
\brief this function handles UsageFault exception
\param[in] none
\param[out] none
\retval none
*/
void UsageFault_Handler(void)
{
/* if Usage Fault except
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 974200 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Docs\Schematic\GD32130C-START-V1.1.pdf
文件 257249 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Docs\User Guide\GD32130C-START_User_Guide_V3.0.pdf
文件 318176 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Docs\User Guide\GD32130C-START评估板用户指南_V3.0.pdf
文件 74810 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\EWARM\GD32130C_START.ewd
文件 55899 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\EWARM\GD32130C_START.ewp
文件 121292 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\EWARM\GD32130C_START.ewt
文件 168 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\EWARM\GD32130C_START.eww
文件 3750 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\gd32f1x0_it.c
文件 2491 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\gd32f1x0_it.h
文件 2683 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\gd32f1x0_libopt.h
文件 3091 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\main.c
文件 23805 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\MDK-ARM\GD32130C_START.uvopt
文件 23389 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\MDK-ARM\GD32130C_START.uvproj
文件 1978 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\readme.txt
文件 2738 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\systick.c
文件 2082 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\01_GPIO_Running_LED\systick.h
文件 74810 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\EWARM\GD32130C_START.ewd
文件 55899 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\EWARM\GD32130C_START.ewp
文件 121292 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\EWARM\GD32130C_START.ewt
文件 168 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\EWARM\GD32130C_START.eww
文件 3750 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\gd32f1x0_it.c
文件 2491 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\gd32f1x0_it.h
文件 2683 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\gd32f1x0_libopt.h
文件 3076 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\main.c
文件 24268 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\MDK-ARM\GD32130C_START.uvopt
文件 23394 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\MDK-ARM\GD32130C_START.uvproj
文件 2129 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\readme.txt
文件 2738 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\systick.c
文件 2081 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\02_GPIO_Key_Polling_mode\systick.h
文件 74810 2019-12-18 16:42 GD32F1x0_Demo_Suites_V3.0.0\GD32130C_START_Demo_Suites\Project\03_EXTI_Key_Interrupt_mode\EWARM\GD32130C_START.ewd
............此处省略1469个文件信息
- 上一篇:sentieon软件
- 下一篇:coursera机器学习吴恩达编程作业答案全满分
评论
共有 条评论