1 /*! 2 \file gd32f3x0_libopt.h 3 \brief library optional for gd32f3x0 4 5 \version 2017-06-06, V1.0.0, firmware for GD32F3x0 6 \version 2019-06-01, V2.0.0, firmware for GD32F3x0 7 \version 2020-09-30, V2.1.0, firmware for GD32F3x0 8 */ 9 10 /* 11 Copyright (c) 2020, GigaDevice Semiconductor Inc. 12 13 Redistribution and use in source and binary forms, with or without modification, 14 are permitted provided that the following conditions are met: 15 16 1. Redistributions of source code must retain the above copyright notice, this 17 list of conditions and the following disclaimer. 18 2. Redistributions in binary form must reproduce the above copyright notice, 19 this list of conditions and the following disclaimer in the documentation 20 and/or other materials provided with the distribution. 21 3. Neither the name of the copyright holder nor the names of its contributors 22 may be used to endorse or promote products derived from this software without 23 specific prior written permission. 24 25 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 26 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 27 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 28 IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 29 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 30 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 31 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 32 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 33 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 34 OF SUCH DAMAGE. 35 */ 36 37 #ifndef GD32F3X0_LIBOPT_H 38 #define GD32F3X0_LIBOPT_H 39 40 #include "gd32f3x0_adc.h" 41 #include "gd32f3x0_crc.h" 42 #include "gd32f3x0_ctc.h" 43 #include "gd32f3x0_dbg.h" 44 #include "gd32f3x0_dma.h" 45 #include "gd32f3x0_exti.h" 46 #include "gd32f3x0_fmc.h" 47 #include "gd32f3x0_gpio.h" 48 #include "gd32f3x0_syscfg.h" 49 #include "gd32f3x0_i2c.h" 50 #include "gd32f3x0_fwdgt.h" 51 #include "gd32f3x0_pmu.h" 52 #include "gd32f3x0_rcu.h" 53 #include "gd32f3x0_rtc.h" 54 #include "gd32f3x0_spi.h" 55 #include "gd32f3x0_timer.h" 56 #include "gd32f3x0_usart.h" 57 #include "gd32f3x0_wwdgt.h" 58 #include "gd32f3x0_misc.h" 59 #include "gd32f3x0_tsi.h" 60 61 #ifdef GD32F350 62 #include "gd32f3x0_cec.h" 63 #include "gd32f3x0_cmp.h" 64 #include "gd32f3x0_dac.h" 65 #endif /* GD32F350 */ 66 67 #endif /* GD32F3X0_LIBOPT_H */ 68