mirror of
https://github.com/EFeru/hoverboard-sideboard-hack-GD.git
synced 2025-07-27 09:39:33 +00:00
- firmware can now be built in Platformio too - minor bug fixes - added LED board picture
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
/*!
|
|
\file gd32f1x0_libopt.h
|
|
\brief library optional for gd32f1x0
|
|
*/
|
|
|
|
/*
|
|
Copyright (C) 2017 GigaDevice
|
|
|
|
2014-12-26, V1.0.0, platform GD32F1x0(x=3,5)
|
|
2016-01-15, V2.0.0, platform GD32F1x0(x=3,5,7,9)
|
|
2016-04-30, V3.0.0, firmware update for GD32F1x0(x=3,5,7,9)
|
|
2017-06-19, V3.1.0, firmware update for GD32F1x0(x=3,5,7,9)
|
|
*/
|
|
|
|
#ifndef GD32F1X0_LIBOPT_H
|
|
#define GD32F1X0_LIBOPT_H
|
|
|
|
#include "gd32f1x0_adc.h"
|
|
#include "gd32f1x0_cec.h"
|
|
#include "gd32f1x0_crc.h"
|
|
#include "gd32f1x0_cmp.h"
|
|
#include "gd32f1x0_dac.h"
|
|
#include "gd32f1x0_dbg.h"
|
|
#include "gd32f1x0_dma.h"
|
|
#include "gd32f1x0_exti.h"
|
|
#include "gd32f1x0_fmc.h"
|
|
#include "gd32f1x0_gpio.h"
|
|
#include "gd32f1x0_syscfg.h"
|
|
#include "gd32f1x0_i2c.h"
|
|
#include "gd32f1x0_fwdgt.h"
|
|
#include "gd32f1x0_pmu.h"
|
|
#include "gd32f1x0_rcu.h"
|
|
#include "gd32f1x0_rtc.h"
|
|
#include "gd32f1x0_spi.h"
|
|
#include "gd32f1x0_timer.h"
|
|
#include "gd32f1x0_usart.h"
|
|
#include "gd32f1x0_wwdgt.h"
|
|
#include "gd32f1x0_misc.h"
|
|
#include "gd32f1x0_tsi.h"
|
|
#ifdef GD32F170_190
|
|
#include "gd32f1x0_slcd.h"
|
|
#include "gd32f1x0_opa.h"
|
|
#include "gd32f1x0_ivref.h"
|
|
#include "gd32f1x0_can.h"
|
|
#endif /* GD32F170_190 */
|
|
|
|
#endif /* GD32F1X0_LIBOPT_H */
|