├── .astylerc ├── .github └── workflows │ └── linter.yml ├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── boards.txt ├── cores └── arduino │ ├── Arduino.h │ ├── CDCACM.cpp │ ├── CDCACM.h │ ├── HardwareRTC.cpp │ ├── HardwareRTC.h │ ├── HardwareSerial.cpp │ ├── HardwareSerial.h │ ├── HardwareSerial1.cpp │ ├── HardwareSerial2.cpp │ ├── HardwareSerial3.cpp │ ├── HardwareSerial4.cpp │ ├── HardwareSerial5.cpp │ ├── HardwareTimer.cpp │ ├── HardwareTimer.h │ ├── Tone.cpp │ ├── USBCore.cpp │ ├── USBCore.h │ ├── USBDefs.h │ ├── WInterrupts.cpp │ ├── WMath.cpp │ ├── abi.cpp │ ├── analog.cpp │ ├── analog.h │ ├── api │ ├── ArduinoAPI.h │ ├── Binary.h │ ├── Client.h │ ├── Common.cpp │ ├── Common.h │ ├── Compat.h │ ├── HardwareI2C.h │ ├── HardwareSPI.h │ ├── HardwareSerial.h │ ├── IPAddress.cpp │ ├── IPAddress.h │ ├── Interrupts.h │ ├── PluggableUSB.cpp │ ├── PluggableUSB.h │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── RingBuffer.h │ ├── Server.h │ ├── Stream.cpp │ ├── Stream.h │ ├── String.cpp │ ├── String.h │ ├── USBAPI.h │ ├── Udp.h │ ├── WCharacter.h │ ├── deprecated-avr-comp │ │ └── avr │ │ │ ├── dtostrf.c.impl │ │ │ ├── dtostrf.h │ │ │ ├── interrupt.h │ │ │ └── pgmspace.h │ ├── deprecated │ │ ├── Client.h │ │ ├── HardwareSerial.h │ │ ├── IPAddress.h │ │ ├── Print.h │ │ ├── Printable.h │ │ ├── Server.h │ │ ├── Stream.h │ │ ├── Udp.h │ │ └── WString.h │ └── itoa.h │ ├── fatal.cpp │ ├── fatal.h │ ├── gd32 │ ├── PeripheralPins.h │ ├── PinConfigured.h │ ├── PinNames.h │ ├── PortNames.h │ ├── Source │ │ └── gd32xxyy_src.c │ ├── cmsis.h │ ├── cmsis_nvic.h │ ├── gd32_def.c │ ├── gd32_def.h │ ├── gd32e50x_libopt.h │ ├── gd32f10x_libopt.h │ ├── gd32f10x_remap.h │ ├── gd32f1x0_libopt.h │ ├── gd32f30x_libopt.h │ ├── gd32f3x0_libopt.h │ ├── gd32xxyy.h │ ├── gpio_interrupt.c │ ├── gpio_interrupt.h │ ├── pinmap.c │ ├── pinmap.h │ ├── pins_arduino.c │ ├── pins_arduino.h │ ├── rtc.c │ ├── rtc.h │ ├── startup_gd32xxyy.S │ ├── system_gd32xxyy.c │ ├── systick.c │ ├── systick.h │ ├── timer.c │ ├── timer.h │ ├── uart.c │ ├── uart.h │ ├── usb.c │ ├── usb.h │ └── usbd_conf.h │ ├── hooks.c │ ├── itoa.c │ ├── main.cpp │ ├── new.cpp │ ├── pwm.cpp │ ├── pwm.h │ ├── wiring_analog.c │ ├── wiring_analog_extra.h │ ├── wiring_digital.c │ ├── wiring_digital_extra.h │ ├── wiring_pulse.cpp │ ├── wiring_shift.c │ └── wiring_time.c ├── docs ├── first_blinky_gd32f303cc.mp4 └── gd32f303cc_board.jpg ├── extras ├── generate_index.py └── package_gd32_index.json.tpl ├── libraries ├── Analog │ ├── examples │ │ └── AnalogInOutSerial │ │ │ └── AnalogInOutSerial.ino │ ├── ignored.h │ └── keywords.txt ├── Blink │ ├── examples │ │ └── Blink │ │ │ └── Blink.ino │ ├── ignored.h │ └── keywords.txt ├── EEPROM │ ├── examples │ │ └── eeprom_read_write │ │ │ └── eeprom_read_write.ino │ ├── library.properties │ └── src │ │ └── EEPROM.h ├── FlashStorage │ ├── README.md │ ├── library.properties │ └── src │ │ ├── FlashAsEEPROM.h │ │ └── FlashStorage.h ├── FreeRTOS │ ├── cmsis_os2 │ │ ├── EventRecorderConf.h │ │ ├── RTE_Components.h │ │ ├── cmsis_os.h │ │ ├── cmsis_os1.c │ │ ├── cmsis_os2.c │ │ ├── cmsis_os2.h │ │ ├── freertos_evr.c │ │ ├── freertos_evr.h │ │ ├── freertos_mpool.h │ │ ├── freertos_os2.h │ │ ├── handlers.txt │ │ ├── os_systick.c │ │ └── os_tick.h │ ├── config │ │ └── FreeRTOSConfig_Default.h │ ├── examples │ │ └── FreeRTOS_Blink │ │ │ ├── FreeRTOS_Blink.ino │ │ │ └── GD32FreeRTOSConfig.h │ ├── library.json │ ├── library.properties │ ├── portable │ │ ├── ARM_CM23 │ │ │ ├── non_secure │ │ │ │ ├── port.c │ │ │ │ ├── portasm.c │ │ │ │ ├── portasm.h │ │ │ │ └── portmacro.h │ │ │ └── secure │ │ │ │ ├── secure_context.c │ │ │ │ ├── secure_context.h │ │ │ │ ├── secure_context_port.c │ │ │ │ ├── secure_heap.c │ │ │ │ ├── secure_heap.h │ │ │ │ ├── secure_init.c │ │ │ │ ├── secure_init.h │ │ │ │ └── secure_port_macros.h │ │ ├── ARM_CM23_NTZ │ │ │ └── non_secure │ │ │ │ ├── port.c │ │ │ │ ├── portasm.c │ │ │ │ ├── portasm.h │ │ │ │ └── portmacro.h │ │ ├── ARM_CM3 │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── ARM_CM33 │ │ │ ├── non_secure │ │ │ │ ├── port.c │ │ │ │ ├── portasm.c │ │ │ │ ├── portasm.h │ │ │ │ └── portmacro.h │ │ │ └── secure │ │ │ │ ├── secure_context.c │ │ │ │ ├── secure_context.h │ │ │ │ ├── secure_context_port.c │ │ │ │ ├── secure_heap.c │ │ │ │ ├── secure_heap.h │ │ │ │ ├── secure_init.c │ │ │ │ ├── secure_init.h │ │ │ │ └── secure_port_macros.h │ │ ├── ARM_CM33_NTZ │ │ │ └── non_secure │ │ │ │ ├── port.c │ │ │ │ ├── portasm.c │ │ │ │ ├── portasm.h │ │ │ │ └── portmacro.h │ │ ├── ARM_CM3_MPU │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── ARM_CM4F │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ └── ARM_CM4_MPU │ │ │ ├── port.c │ │ │ └── portmacro.h │ └── src │ │ ├── FreeRTOS.h │ │ ├── FreeRTOSConfig.h │ │ ├── GD32_Arduino.c │ │ ├── StackMacros.h │ │ ├── atomic.h │ │ ├── croutine.c │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.c │ │ ├── event_groups.h │ │ ├── heap │ │ └── heap_4.c │ │ ├── list.c │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.c │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── portasm.h │ │ ├── portmacro.h │ │ ├── projdefs.h │ │ ├── queue.c │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stdint.readme │ │ ├── stream_buffer.c │ │ ├── stream_buffer.h │ │ ├── task.h │ │ ├── tasks.c │ │ ├── timers.c │ │ ├── timers.h │ │ ├── used_port.c │ │ └── used_portasm.c ├── SPI │ ├── examples │ │ ├── BarometricPressureSensor │ │ │ └── BarometricPressureSensor.ino │ │ ├── DigitalPotControl │ │ │ └── DigitalPotControl.ino │ │ └── Master_send_receive │ │ │ └── Master_send_receive.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── SPI.cpp │ │ ├── SPI.h │ │ └── utility │ │ ├── drv_spi.c │ │ └── drv_spi.h ├── Servo │ ├── examples │ │ ├── Knob │ │ │ └── Knob.ino │ │ └── Sweep │ │ │ └── Sweep.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Servo.cpp │ │ └── Servo.h ├── SoftwareSerial │ ├── examples │ │ └── SoftwareSerialExample │ │ │ └── SoftwareSerialExample.ino │ ├── library.properties │ └── src │ │ ├── SoftwareSerial.cpp │ │ └── SoftwareSerial.h ├── Timer │ ├── examples │ │ └── TimerPeriodcallback │ │ │ └── TimerPeriodcallback.ino │ ├── ignored.h │ └── keywords.txt ├── Wire │ ├── examples │ │ ├── SFRRanger_reader │ │ │ └── SFRRanger_reader.pde │ │ ├── digital_potentiometer │ │ │ └── digital_potentiometer.pde │ │ ├── general_call │ │ │ ├── master_writer │ │ │ │ └── master_writer.pde │ │ │ └── slave_receiver │ │ │ │ └── slave_receiver.pde │ │ ├── i2c_scanner │ │ │ └── i2c_scanner.ino │ │ ├── master_reader │ │ │ └── master_reader.pde │ │ ├── master_writer │ │ │ └── master_writer.pde │ │ ├── slave_receiver │ │ │ └── slave_receiver.pde │ │ └── slave_sender │ │ │ └── slave_sender.pde │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Wire.cpp │ │ ├── Wire.h │ │ ├── Wire1.cpp │ │ ├── Wire2.cpp │ │ └── utility │ │ ├── twi.cpp │ │ └── twi.h ├── pwm │ ├── examples │ │ └── pwmoutput │ │ │ └── pwmoutput.ino │ ├── ignored.h │ └── keywords.txt └── rtc │ ├── examples │ └── rtc │ │ └── rtc.ino │ ├── ignored.h │ └── keywords.txt ├── package.json ├── package_gd32_index.json ├── platform.txt ├── system ├── GD32E23x_firmware │ ├── CMSIS │ │ ├── GD │ │ │ └── GD32E23x │ │ │ │ ├── Include │ │ │ │ ├── gd32e23x.h │ │ │ │ └── system_gd32e23x.h │ │ │ │ └── Source │ │ │ │ ├── ARM │ │ │ │ └── startup_gd32e23x.s │ │ │ │ ├── IAR │ │ │ │ └── startup_gd32e23x.s │ │ │ │ └── system_gd32e23x.c │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_version.h │ │ ├── core_cm23.h │ │ └── mpu_armv8.h │ └── GD32E23x_standard_peripheral │ │ ├── Include │ │ ├── gd32e23x_adc.h │ │ ├── gd32e23x_cmp.h │ │ ├── gd32e23x_crc.h │ │ ├── gd32e23x_dbg.h │ │ ├── gd32e23x_dma.h │ │ ├── gd32e23x_exti.h │ │ ├── gd32e23x_fmc.h │ │ ├── gd32e23x_fwdgt.h │ │ ├── gd32e23x_gpio.h │ │ ├── gd32e23x_i2c.h │ │ ├── gd32e23x_libopt.h │ │ ├── gd32e23x_misc.h │ │ ├── gd32e23x_pmu.h │ │ ├── gd32e23x_rcu.h │ │ ├── gd32e23x_rtc.h │ │ ├── gd32e23x_spi.h │ │ ├── gd32e23x_syscfg.h │ │ ├── gd32e23x_timer.h │ │ ├── gd32e23x_usart.h │ │ └── gd32e23x_wwdgt.h │ │ └── Source │ │ ├── gd32e23x_adc.c │ │ ├── gd32e23x_cmp.c │ │ ├── gd32e23x_crc.c │ │ ├── gd32e23x_dbg.c │ │ ├── gd32e23x_dma.c │ │ ├── gd32e23x_exti.c │ │ ├── gd32e23x_fmc.c │ │ ├── gd32e23x_fwdgt.c │ │ ├── gd32e23x_gpio.c │ │ ├── gd32e23x_i2c.c │ │ ├── gd32e23x_misc.c │ │ ├── gd32e23x_pmu.c │ │ ├── gd32e23x_rcu.c │ │ ├── gd32e23x_rtc.c │ │ ├── gd32e23x_spi.c │ │ ├── gd32e23x_syscfg.c │ │ ├── gd32e23x_timer.c │ │ ├── gd32e23x_usart.c │ │ └── gd32e23x_wwdgt.c ├── GD32E50x_firmware │ ├── CMSIS │ │ ├── GD │ │ │ └── GD32E50x │ │ │ │ ├── Include │ │ │ │ ├── gd32e50x.h │ │ │ │ └── system_gd32e50x.h │ │ │ │ └── Source │ │ │ │ ├── ARM │ │ │ │ ├── startup_gd32e508.s │ │ │ │ ├── startup_gd32e50x_cl.s │ │ │ │ ├── startup_gd32e50x_hd.s │ │ │ │ ├── startup_gd32e50x_xd.s │ │ │ │ └── startup_gd32eprt.s │ │ │ │ ├── IAR │ │ │ │ ├── startup_gd32e508.s │ │ │ │ ├── startup_gd32e50x_cl.s │ │ │ │ ├── startup_gd32e50x_hd.s │ │ │ │ ├── startup_gd32e50x_xd.s │ │ │ │ └── startup_gd32eprt.s │ │ │ │ └── system_gd32e50x.c │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_version.h │ │ ├── core_cm33.h │ │ └── mpu_armv8.h │ ├── GD32E50x_standard_peripheral │ │ ├── Include │ │ │ ├── gd32e50x_adc.h │ │ │ ├── gd32e50x_bkp.h │ │ │ ├── gd32e50x_can.h │ │ │ ├── gd32e50x_cmp.h │ │ │ ├── gd32e50x_crc.h │ │ │ ├── gd32e50x_ctc.h │ │ │ ├── gd32e50x_dac.h │ │ │ ├── gd32e50x_dbg.h │ │ │ ├── gd32e50x_dma.h │ │ │ ├── gd32e50x_enet.h │ │ │ ├── gd32e50x_exmc.h │ │ │ ├── gd32e50x_exti.h │ │ │ ├── gd32e50x_fmc.h │ │ │ ├── gd32e50x_fwdgt.h │ │ │ ├── gd32e50x_gpio.h │ │ │ ├── gd32e50x_i2c.h │ │ │ ├── gd32e50x_misc.h │ │ │ ├── gd32e50x_pmu.h │ │ │ ├── gd32e50x_rcu.h │ │ │ ├── gd32e50x_rtc.h │ │ │ ├── gd32e50x_sdio.h │ │ │ ├── gd32e50x_shrtimer.h │ │ │ ├── gd32e50x_spi.h │ │ │ ├── gd32e50x_sqpi.h │ │ │ ├── gd32e50x_timer.h │ │ │ ├── gd32e50x_tmu.h │ │ │ ├── gd32e50x_usart.h │ │ │ └── gd32e50x_wwdgt.h │ │ └── Source │ │ │ ├── gd32e50x_adc.c │ │ │ ├── gd32e50x_bkp.c │ │ │ ├── gd32e50x_can.c │ │ │ ├── gd32e50x_cmp.c │ │ │ ├── gd32e50x_crc.c │ │ │ ├── gd32e50x_ctc.c │ │ │ ├── gd32e50x_dac.c │ │ │ ├── gd32e50x_dbg.c │ │ │ ├── gd32e50x_dma.c │ │ │ ├── gd32e50x_enet.c │ │ │ ├── gd32e50x_exmc.c │ │ │ ├── gd32e50x_exti.c │ │ │ ├── gd32e50x_fmc.c │ │ │ ├── gd32e50x_fwdgt.c │ │ │ ├── gd32e50x_gpio.c │ │ │ ├── gd32e50x_i2c.c │ │ │ ├── gd32e50x_misc.c │ │ │ ├── gd32e50x_pmu.c │ │ │ ├── gd32e50x_rcu.c │ │ │ ├── gd32e50x_rtc.c │ │ │ ├── gd32e50x_sdio.c │ │ │ ├── gd32e50x_shrtimer.c │ │ │ ├── gd32e50x_spi.c │ │ │ ├── gd32e50x_sqpi.c │ │ │ ├── gd32e50x_timer.c │ │ │ ├── gd32e50x_tmu.c │ │ │ ├── gd32e50x_usart.c │ │ │ └── gd32e50x_wwdgt.c │ ├── GD32E50x_usbd_library │ │ ├── class │ │ │ └── device │ │ │ │ ├── audio │ │ │ │ ├── Include │ │ │ │ │ ├── audio_core.h │ │ │ │ │ └── audio_out_itf.h │ │ │ │ └── Source │ │ │ │ │ ├── audio_core.c │ │ │ │ │ └── audio_out_itf.c │ │ │ │ ├── cdc │ │ │ │ ├── Include │ │ │ │ │ └── cdc_acm_core.h │ │ │ │ └── Source │ │ │ │ │ └── cdc_acm_core.c │ │ │ │ ├── dfu │ │ │ │ ├── Include │ │ │ │ │ └── dfu_core.h │ │ │ │ └── Source │ │ │ │ │ └── dfu_core.c │ │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── custom_hid_core.h │ │ │ │ │ ├── standard_hid_core.h │ │ │ │ │ └── usb_hid.h │ │ │ │ └── Source │ │ │ │ │ ├── custom_hid_core.c │ │ │ │ │ └── standard_hid_core.c │ │ │ │ ├── iap │ │ │ │ ├── Include │ │ │ │ │ └── usb_iap_core.h │ │ │ │ └── Source │ │ │ │ │ └── usb_iap_core.c │ │ │ │ ├── msc │ │ │ │ ├── Include │ │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ │ ├── usbd_msc_core.h │ │ │ │ │ ├── usbd_msc_data.h │ │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ └── Source │ │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ │ ├── usbd_msc_core.c │ │ │ │ │ ├── usbd_msc_data.c │ │ │ │ │ └── usbd_msc_scsi.c │ │ │ │ └── printer │ │ │ │ ├── Include │ │ │ │ └── printer_core.h │ │ │ │ └── Source │ │ │ │ └── printer_core.c │ │ ├── device │ │ │ ├── Include │ │ │ │ ├── usb_ch9_std.h │ │ │ │ ├── usbd_core.h │ │ │ │ ├── usbd_enum.h │ │ │ │ ├── usbd_pwr.h │ │ │ │ └── usbd_transc.h │ │ │ └── Source │ │ │ │ ├── usbd_core.c │ │ │ │ ├── usbd_enum.c │ │ │ │ ├── usbd_pwr.c │ │ │ │ └── usbd_transc.c │ │ └── usbd │ │ │ ├── Include │ │ │ ├── usbd_lld_core.h │ │ │ ├── usbd_lld_int.h │ │ │ └── usbd_lld_regs.h │ │ │ └── Source │ │ │ ├── usbd_lld_core.c │ │ │ └── usbd_lld_int.c │ └── GD32E50x_usbhs_library │ │ ├── device │ │ ├── class │ │ │ ├── audio │ │ │ │ ├── Include │ │ │ │ │ ├── audio_core.h │ │ │ │ │ └── audio_out_itf.h │ │ │ │ └── Source │ │ │ │ │ ├── audio_core.c │ │ │ │ │ └── audio_out_itf.c │ │ │ ├── cdc │ │ │ │ ├── Include │ │ │ │ │ └── cdc_acm_core.h │ │ │ │ └── Source │ │ │ │ │ └── cdc_acm_core.c │ │ │ ├── dfu │ │ │ │ ├── Include │ │ │ │ │ ├── dfu_core.h │ │ │ │ │ └── dfu_mal.h │ │ │ │ └── Source │ │ │ │ │ ├── dfu_core.c │ │ │ │ │ └── dfu_mal.c │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── custom_hid_core.h │ │ │ │ │ ├── standard_hid_core.h │ │ │ │ │ └── std_hid_mouse_core.h │ │ │ │ └── Source │ │ │ │ │ ├── custom_hid_core.c │ │ │ │ │ ├── standard_hid_core.c │ │ │ │ │ └── std_hid_mouse_core.c │ │ │ ├── iap │ │ │ │ ├── Include │ │ │ │ │ ├── usb_iap_core.h │ │ │ │ │ └── usb_iap_libusb.h │ │ │ │ └── Source │ │ │ │ │ ├── usb_iap_core.c │ │ │ │ │ └── usb_iap_libusb.c │ │ │ ├── msc │ │ │ │ ├── Include │ │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ │ ├── usbd_msc_core.h │ │ │ │ │ ├── usbd_msc_data.h │ │ │ │ │ ├── usbd_msc_efs.h │ │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ └── Source │ │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ │ ├── usbd_msc_core.c │ │ │ │ │ ├── usbd_msc_data.c │ │ │ │ │ ├── usbd_msc_efs.c │ │ │ │ │ └── usbd_msc_scsi.c │ │ │ └── printer │ │ │ │ ├── Include │ │ │ │ └── printer_core.h │ │ │ │ └── Source │ │ │ │ └── printer_core.c │ │ └── core │ │ │ ├── Include │ │ │ ├── usbd_core.h │ │ │ ├── usbd_enum.h │ │ │ └── usbd_transc.h │ │ │ └── Source │ │ │ ├── usbd_core.c │ │ │ ├── usbd_enum.c │ │ │ └── usbd_transc.c │ │ ├── driver │ │ ├── Include │ │ │ ├── drv_usb_core.h │ │ │ ├── drv_usb_dev.h │ │ │ ├── drv_usb_host.h │ │ │ ├── drv_usb_hw.h │ │ │ ├── drv_usb_regs.h │ │ │ ├── drv_usbd_int.h │ │ │ └── drv_usbh_int.h │ │ └── Source │ │ │ ├── drv_usb_core.c │ │ │ ├── drv_usb_dev.c │ │ │ ├── drv_usb_host.c │ │ │ ├── drv_usbd_int.c │ │ │ └── drv_usbh_int.c │ │ ├── host │ │ ├── class │ │ │ ├── cdc │ │ │ │ ├── Include │ │ │ │ │ └── usbh_cdc_core.h │ │ │ │ └── Source │ │ │ │ │ └── usbh_cdc_core.c │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── usbh_hid_core.h │ │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ │ └── usbh_hid_usage.h │ │ │ │ └── Source │ │ │ │ │ ├── usbh_hid_core.c │ │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ │ └── usbh_hid_parser.c │ │ │ └── msc │ │ │ │ ├── Include │ │ │ │ ├── usbh_msc_bbb.h │ │ │ │ ├── usbh_msc_core.h │ │ │ │ └── usbh_msc_scsi.h │ │ │ │ └── Source │ │ │ │ ├── usbh_msc_bbb.c │ │ │ │ ├── usbh_msc_core.c │ │ │ │ ├── usbh_msc_fatfs.c │ │ │ │ └── usbh_msc_scsi.c │ │ └── core │ │ │ ├── Include │ │ │ ├── usbh_core.h │ │ │ ├── usbh_enum.h │ │ │ ├── usbh_pipe.h │ │ │ └── usbh_transc.h │ │ │ └── Source │ │ │ ├── usbh_core.c │ │ │ ├── usbh_enum.c │ │ │ ├── usbh_pipe.c │ │ │ └── usbh_transc.c │ │ └── ustd │ │ ├── class │ │ ├── cdc │ │ │ └── usb_cdc.h │ │ ├── hid │ │ │ └── usb_hid.h │ │ └── msc │ │ │ ├── msc_bbb.h │ │ │ ├── msc_scsi.h │ │ │ └── usb_msc.h │ │ └── common │ │ └── usb_ch9_std.h ├── GD32F10x_firmware │ ├── CMSIS │ │ ├── GD │ │ │ └── GD32F10x │ │ │ │ ├── Include │ │ │ │ ├── gd32f10x.h │ │ │ │ └── system_gd32f10x.h │ │ │ │ └── Source │ │ │ │ ├── ARM │ │ │ │ ├── startup_gd32f10x_cl.s │ │ │ │ ├── startup_gd32f10x_hd.s │ │ │ │ ├── startup_gd32f10x_md.s │ │ │ │ └── startup_gd32f10x_xd.s │ │ │ │ ├── IAR │ │ │ │ ├── startup_gd32f10x_cl.s │ │ │ │ ├── startup_gd32f10x_hd.s │ │ │ │ ├── startup_gd32f10x_md.s │ │ │ │ └── startup_gd32f10x_xd.s │ │ │ │ └── system_gd32f10x.c │ │ ├── core_cm3.h │ │ ├── core_cmFunc.h │ │ └── core_cmInstr.h │ ├── GD32F10x_standard_peripheral │ │ ├── Include │ │ │ ├── gd32f10x_adc.h │ │ │ ├── gd32f10x_bkp.h │ │ │ ├── gd32f10x_can.h │ │ │ ├── gd32f10x_crc.h │ │ │ ├── gd32f10x_dac.h │ │ │ ├── gd32f10x_dbg.h │ │ │ ├── gd32f10x_dma.h │ │ │ ├── gd32f10x_enet.h │ │ │ ├── gd32f10x_exmc.h │ │ │ ├── gd32f10x_exti.h │ │ │ ├── gd32f10x_fmc.h │ │ │ ├── gd32f10x_fwdgt.h │ │ │ ├── gd32f10x_gpio.h │ │ │ ├── gd32f10x_i2c.h │ │ │ ├── gd32f10x_misc.h │ │ │ ├── gd32f10x_pmu.h │ │ │ ├── gd32f10x_rcu.h │ │ │ ├── gd32f10x_rtc.h │ │ │ ├── gd32f10x_sdio.h │ │ │ ├── gd32f10x_spi.h │ │ │ ├── gd32f10x_timer.h │ │ │ ├── gd32f10x_usart.h │ │ │ └── gd32f10x_wwdgt.h │ │ └── Source │ │ │ ├── gd32f10x_adc.c │ │ │ ├── gd32f10x_bkp.c │ │ │ ├── gd32f10x_can.c │ │ │ ├── gd32f10x_crc.c │ │ │ ├── gd32f10x_dac.c │ │ │ ├── gd32f10x_dbg.c │ │ │ ├── gd32f10x_dma.c │ │ │ ├── gd32f10x_enet.c │ │ │ ├── gd32f10x_exmc.c │ │ │ ├── gd32f10x_exti.c │ │ │ ├── gd32f10x_fmc.c │ │ │ ├── gd32f10x_fwdgt.c │ │ │ ├── gd32f10x_gpio.c │ │ │ ├── gd32f10x_i2c.c │ │ │ ├── gd32f10x_misc.c │ │ │ ├── gd32f10x_pmu.c │ │ │ ├── gd32f10x_rcu.c │ │ │ ├── gd32f10x_rtc.c │ │ │ ├── gd32f10x_sdio.c │ │ │ ├── gd32f10x_spi.c │ │ │ ├── gd32f10x_timer.c │ │ │ ├── gd32f10x_usart.c │ │ │ └── gd32f10x_wwdgt.c │ ├── GD32F10x_usbd_library │ │ ├── class │ │ │ └── device │ │ │ │ ├── audio │ │ │ │ ├── Include │ │ │ │ │ ├── audio_core.h │ │ │ │ │ └── audio_out_itf.h │ │ │ │ └── Source │ │ │ │ │ ├── audio_core.c │ │ │ │ │ └── audio_out_itf.c │ │ │ │ ├── cdc │ │ │ │ ├── Include │ │ │ │ │ └── cdc_acm_core.h │ │ │ │ └── Source │ │ │ │ │ └── cdc_acm_core.c │ │ │ │ ├── dfu │ │ │ │ ├── Include │ │ │ │ │ ├── dfu_core.h │ │ │ │ │ └── dfu_mem.h │ │ │ │ └── Source │ │ │ │ │ ├── dfu_core.c │ │ │ │ │ └── dfu_mem.c │ │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── custom_hid_core.h │ │ │ │ │ ├── standard_hid_core.h │ │ │ │ │ └── usb_hid.h │ │ │ │ └── Source │ │ │ │ │ ├── custom_hid_core.c │ │ │ │ │ └── standard_hid_core.c │ │ │ │ ├── iap │ │ │ │ ├── Include │ │ │ │ │ └── usb_iap_core.h │ │ │ │ └── Source │ │ │ │ │ └── usb_iap_core.c │ │ │ │ ├── msc │ │ │ │ ├── Include │ │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ │ ├── usbd_msc_core.h │ │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ └── Source │ │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ │ ├── usbd_msc_core.c │ │ │ │ │ └── usbd_msc_scsi.c │ │ │ │ └── printer │ │ │ │ ├── Include │ │ │ │ └── printer_core.h │ │ │ │ └── Source │ │ │ │ └── printer_core.c │ │ ├── device │ │ │ ├── Include │ │ │ │ ├── usb_ch9_std.h │ │ │ │ ├── usbd_core.h │ │ │ │ ├── usbd_enum.h │ │ │ │ ├── usbd_pwr.h │ │ │ │ └── usbd_transc.h │ │ │ └── Source │ │ │ │ ├── usbd_core.c │ │ │ │ ├── usbd_enum.c │ │ │ │ ├── usbd_pwr.c │ │ │ │ └── usbd_transc.c │ │ └── usbd │ │ │ ├── Include │ │ │ ├── usbd_lld_core.h │ │ │ ├── usbd_lld_int.h │ │ │ └── usbd_lld_regs.h │ │ │ └── Source │ │ │ ├── usbd_lld_core.c │ │ │ └── usbd_lld_int.c │ └── GD32F10x_usbfs_library │ │ ├── device │ │ ├── class │ │ │ ├── audio │ │ │ │ ├── Include │ │ │ │ │ ├── audio_core.h │ │ │ │ │ └── audio_out_itf.h │ │ │ │ └── Source │ │ │ │ │ ├── audio_core.c │ │ │ │ │ └── audio_out_itf.c │ │ │ ├── cdc │ │ │ │ ├── Include │ │ │ │ │ └── cdc_acm_core.h │ │ │ │ └── Source │ │ │ │ │ └── cdc_acm_core.c │ │ │ ├── dfu │ │ │ │ ├── Include │ │ │ │ │ ├── dfu_core.h │ │ │ │ │ └── dfu_mem.h │ │ │ │ └── Source │ │ │ │ │ ├── dfu_core.c │ │ │ │ │ └── dfu_mem.c │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── custom_hid_core.h │ │ │ │ │ └── standard_hid_core.h │ │ │ │ └── Source │ │ │ │ │ ├── custom_hid_core.c │ │ │ │ │ └── standard_hid_core.c │ │ │ ├── iap │ │ │ │ ├── Include │ │ │ │ │ └── usb_iap_core.h │ │ │ │ └── Source │ │ │ │ │ └── usb_iap_core.c │ │ │ ├── msc │ │ │ │ ├── Include │ │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ │ ├── usbd_msc_core.h │ │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ └── Source │ │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ │ ├── usbd_msc_core.c │ │ │ │ │ └── usbd_msc_scsi.c │ │ │ └── printer │ │ │ │ ├── Include │ │ │ │ └── printer_core.h │ │ │ │ └── Source │ │ │ │ └── printer_core.c │ │ └── core │ │ │ ├── Include │ │ │ ├── usbd_core.h │ │ │ ├── usbd_enum.h │ │ │ └── usbd_transc.h │ │ │ └── Source │ │ │ ├── usbd_core.c │ │ │ ├── usbd_enum.c │ │ │ └── usbd_transc.c │ │ ├── driver │ │ ├── Include │ │ │ ├── drv_usb_core.h │ │ │ ├── drv_usb_dev.h │ │ │ ├── drv_usb_host.h │ │ │ ├── drv_usb_hw.h │ │ │ ├── drv_usb_regs.h │ │ │ ├── drv_usbd_int.h │ │ │ └── drv_usbh_int.h │ │ └── Source │ │ │ ├── drv_usb_core.c │ │ │ ├── drv_usb_dev.c │ │ │ ├── drv_usb_host.c │ │ │ ├── drv_usbd_int.c │ │ │ └── drv_usbh_int.c │ │ ├── host │ │ ├── class │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── usbh_hid_core.h │ │ │ │ │ └── usbh_standard_hid.h │ │ │ │ └── Source │ │ │ │ │ ├── usbh_hid_core.c │ │ │ │ │ └── usbh_standard_hid.c │ │ │ └── msc │ │ │ │ ├── Include │ │ │ │ ├── usbh_msc_bbb.h │ │ │ │ ├── usbh_msc_core.h │ │ │ │ └── usbh_msc_scsi.h │ │ │ │ └── Source │ │ │ │ ├── usbh_msc_bbb.c │ │ │ │ ├── usbh_msc_core.c │ │ │ │ ├── usbh_msc_fatfs.c │ │ │ │ └── usbh_msc_scsi.c │ │ └── core │ │ │ ├── Include │ │ │ ├── usbh_core.h │ │ │ ├── usbh_enum.h │ │ │ ├── usbh_pipe.h │ │ │ └── usbh_transc.h │ │ │ └── Source │ │ │ ├── usbh_core.c │ │ │ ├── usbh_enum.c │ │ │ ├── usbh_pipe.c │ │ │ └── usbh_transc.c │ │ └── ustd │ │ ├── class │ │ ├── cdc │ │ │ └── usb_cdc.h │ │ ├── hid │ │ │ └── usb_hid.h │ │ └── msc │ │ │ ├── msc_bbb.h │ │ │ ├── msc_scsi.h │ │ │ └── usb_msc.h │ │ └── common │ │ └── usb_ch9_std.h ├── GD32F1x0_firmware │ ├── CMSIS │ │ ├── GD │ │ │ └── GD32F1x0 │ │ │ │ ├── Include │ │ │ │ ├── gd32f1x0.h │ │ │ │ └── system_gd32f1x0.h │ │ │ │ └── Source │ │ │ │ ├── ARM │ │ │ │ └── startup_gd32f1x0.s │ │ │ │ ├── IAR │ │ │ │ └── startup_gd32f1x0.s │ │ │ │ └── system_gd32f1x0.c │ │ ├── core_cm3.h │ │ ├── core_cmFunc.h │ │ └── core_cmInstr.h │ ├── GD32F1x0_standard_peripheral │ │ ├── Include │ │ │ ├── gd32f1x0_adc.h │ │ │ ├── gd32f1x0_can.h │ │ │ ├── gd32f1x0_cec.h │ │ │ ├── gd32f1x0_cmp.h │ │ │ ├── gd32f1x0_crc.h │ │ │ ├── gd32f1x0_dac.h │ │ │ ├── gd32f1x0_dbg.h │ │ │ ├── gd32f1x0_dma.h │ │ │ ├── gd32f1x0_exti.h │ │ │ ├── gd32f1x0_fmc.h │ │ │ ├── gd32f1x0_fwdgt.h │ │ │ ├── gd32f1x0_gpio.h │ │ │ ├── gd32f1x0_i2c.h │ │ │ ├── gd32f1x0_ivref.h │ │ │ ├── gd32f1x0_misc.h │ │ │ ├── gd32f1x0_opa.h │ │ │ ├── gd32f1x0_pmu.h │ │ │ ├── gd32f1x0_rcu.h │ │ │ ├── gd32f1x0_rtc.h │ │ │ ├── gd32f1x0_slcd.h │ │ │ ├── gd32f1x0_spi.h │ │ │ ├── gd32f1x0_syscfg.h │ │ │ ├── gd32f1x0_timer.h │ │ │ ├── gd32f1x0_tsi.h │ │ │ ├── gd32f1x0_usart.h │ │ │ └── gd32f1x0_wwdgt.h │ │ └── Source │ │ │ ├── gd32f1x0_adc.c │ │ │ ├── gd32f1x0_can.c │ │ │ ├── gd32f1x0_cec.c │ │ │ ├── gd32f1x0_cmp.c │ │ │ ├── gd32f1x0_crc.c │ │ │ ├── gd32f1x0_dac.c │ │ │ ├── gd32f1x0_dbg.c │ │ │ ├── gd32f1x0_dma.c │ │ │ ├── gd32f1x0_exti.c │ │ │ ├── gd32f1x0_fmc.c │ │ │ ├── gd32f1x0_fwdgt.c │ │ │ ├── gd32f1x0_gpio.c │ │ │ ├── gd32f1x0_i2c.c │ │ │ ├── gd32f1x0_ivref.c │ │ │ ├── gd32f1x0_misc.c │ │ │ ├── gd32f1x0_opa.c │ │ │ ├── gd32f1x0_pmu.c │ │ │ ├── gd32f1x0_rcu.c │ │ │ ├── gd32f1x0_rtc.c │ │ │ ├── gd32f1x0_slcd.c │ │ │ ├── gd32f1x0_spi.c │ │ │ ├── gd32f1x0_syscfg.c │ │ │ ├── gd32f1x0_timer.c │ │ │ ├── gd32f1x0_tsi.c │ │ │ ├── gd32f1x0_usart.c │ │ │ └── gd32f1x0_wwdgt.c │ └── GD32F1x0_usbd_library │ │ ├── class │ │ └── device │ │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ │ ├── ccid │ │ │ ├── Include │ │ │ │ ├── ccid_cmd.h │ │ │ │ ├── ccid_core.h │ │ │ │ └── ccid_itf.h │ │ │ └── Source │ │ │ │ ├── ccid_cmd.c │ │ │ │ ├── ccid_core.c │ │ │ │ └── ccid_itf.c │ │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ │ ├── dfu │ │ │ ├── Include │ │ │ │ ├── dfu_core.h │ │ │ │ └── dfu_mem.h │ │ │ └── Source │ │ │ │ ├── dfu_core.c │ │ │ │ └── dfu_mem.c │ │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ ├── standard_hid_core.h │ │ │ │ └── usb_hid.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ └── standard_hid_core.c │ │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ └── usbd_msc_scsi.c │ │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ │ ├── device │ │ ├── Include │ │ │ ├── usb_ch9_std.h │ │ │ ├── usbd_core.h │ │ │ ├── usbd_enum.h │ │ │ ├── usbd_pwr.h │ │ │ └── usbd_transc.h │ │ └── Source │ │ │ ├── usbd_core.c │ │ │ ├── usbd_enum.c │ │ │ ├── usbd_pwr.c │ │ │ └── usbd_transc.c │ │ └── usbd │ │ ├── Include │ │ ├── usbd_lld_core.h │ │ ├── usbd_lld_int.h │ │ └── usbd_lld_regs.h │ │ └── Source │ │ ├── usbd_lld_core.c │ │ └── usbd_lld_int.c ├── GD32F30x_firmware │ ├── CMSIS │ │ ├── GD │ │ │ └── GD32F30x │ │ │ │ ├── Include │ │ │ │ ├── gd32f30x.h │ │ │ │ └── system_gd32f30x.h │ │ │ │ └── Source │ │ │ │ ├── ARM │ │ │ │ ├── startup_gd32f30x_cl.s │ │ │ │ ├── startup_gd32f30x_hd.s │ │ │ │ └── startup_gd32f30x_xd.s │ │ │ │ ├── IAR │ │ │ │ ├── startup_gd32f30x_cl.s │ │ │ │ ├── startup_gd32f30x_hd.s │ │ │ │ └── startup_gd32f30x_xd.s │ │ │ │ └── system_gd32f30x.c │ │ ├── core_cm4.h │ │ ├── core_cm4_simd.h │ │ ├── core_cmFunc.h │ │ └── core_cmInstr.h │ ├── GD32F30x_standard_peripheral │ │ ├── Include │ │ │ ├── gd32f30x_adc.h │ │ │ ├── gd32f30x_bkp.h │ │ │ ├── gd32f30x_can.h │ │ │ ├── gd32f30x_crc.h │ │ │ ├── gd32f30x_ctc.h │ │ │ ├── gd32f30x_dac.h │ │ │ ├── gd32f30x_dbg.h │ │ │ ├── gd32f30x_dma.h │ │ │ ├── gd32f30x_enet.h │ │ │ ├── gd32f30x_exmc.h │ │ │ ├── gd32f30x_exti.h │ │ │ ├── gd32f30x_fmc.h │ │ │ ├── gd32f30x_fwdgt.h │ │ │ ├── gd32f30x_gpio.h │ │ │ ├── gd32f30x_i2c.h │ │ │ ├── gd32f30x_misc.h │ │ │ ├── gd32f30x_pmu.h │ │ │ ├── gd32f30x_rcu.h │ │ │ ├── gd32f30x_rtc.h │ │ │ ├── gd32f30x_sdio.h │ │ │ ├── gd32f30x_spi.h │ │ │ ├── gd32f30x_timer.h │ │ │ ├── gd32f30x_usart.h │ │ │ └── gd32f30x_wwdgt.h │ │ └── Source │ │ │ ├── gd32f30x_adc.c │ │ │ ├── gd32f30x_bkp.c │ │ │ ├── gd32f30x_can.c │ │ │ ├── gd32f30x_crc.c │ │ │ ├── gd32f30x_ctc.c │ │ │ ├── gd32f30x_dac.c │ │ │ ├── gd32f30x_dbg.c │ │ │ ├── gd32f30x_dma.c │ │ │ ├── gd32f30x_enet.c │ │ │ ├── gd32f30x_exmc.c │ │ │ ├── gd32f30x_exti.c │ │ │ ├── gd32f30x_fmc.c │ │ │ ├── gd32f30x_fwdgt.c │ │ │ ├── gd32f30x_gpio.c │ │ │ ├── gd32f30x_i2c.c │ │ │ ├── gd32f30x_misc.c │ │ │ ├── gd32f30x_pmu.c │ │ │ ├── gd32f30x_rcu.c │ │ │ ├── gd32f30x_rtc.c │ │ │ ├── gd32f30x_sdio.c │ │ │ ├── gd32f30x_spi.c │ │ │ ├── gd32f30x_timer.c │ │ │ ├── gd32f30x_usart.c │ │ │ └── gd32f30x_wwdgt.c │ ├── GD32F30x_usbd_library │ │ ├── class │ │ │ └── device │ │ │ │ ├── audio │ │ │ │ ├── Include │ │ │ │ │ ├── audio_core.h │ │ │ │ │ └── audio_out_itf.h │ │ │ │ └── Source │ │ │ │ │ ├── audio_core.c │ │ │ │ │ └── audio_out_itf.c │ │ │ │ ├── cdc │ │ │ │ ├── Include │ │ │ │ │ └── cdc_acm_core.h │ │ │ │ └── Source │ │ │ │ │ └── cdc_acm_core.c │ │ │ │ ├── dfu │ │ │ │ ├── Include │ │ │ │ │ ├── dfu_core.h │ │ │ │ │ └── dfu_mem.h │ │ │ │ └── Source │ │ │ │ │ ├── dfu_core.c │ │ │ │ │ └── dfu_mem.c │ │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── custom_hid_core.h │ │ │ │ │ ├── standard_hid_core.h │ │ │ │ │ ├── std_hid_mouse_core.h │ │ │ │ │ └── usb_hid.h │ │ │ │ └── Source │ │ │ │ │ ├── custom_hid_core.c │ │ │ │ │ ├── standard_hid_core.c │ │ │ │ │ └── std_hid_mouse_core.c │ │ │ │ ├── iap │ │ │ │ ├── Include │ │ │ │ │ └── usb_iap_core.h │ │ │ │ └── Source │ │ │ │ │ └── usb_iap_core.c │ │ │ │ ├── msc │ │ │ │ ├── Include │ │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ │ ├── usbd_msc_core.h │ │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ └── Source │ │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ │ ├── usbd_msc_core.c │ │ │ │ │ └── usbd_msc_scsi.c │ │ │ │ └── printer │ │ │ │ ├── Include │ │ │ │ └── printer_core.h │ │ │ │ └── Source │ │ │ │ └── printer_core.c │ │ ├── device │ │ │ ├── Include │ │ │ │ ├── usb_ch9_std.h │ │ │ │ ├── usbd_core.h │ │ │ │ ├── usbd_enum.h │ │ │ │ ├── usbd_pwr.h │ │ │ │ └── usbd_transc.h │ │ │ └── Source │ │ │ │ ├── usbd_core.c │ │ │ │ ├── usbd_enum.c │ │ │ │ ├── usbd_pwr.c │ │ │ │ └── usbd_transc.c │ │ └── usbd │ │ │ ├── Include │ │ │ ├── usbd_lld_core.h │ │ │ ├── usbd_lld_int.h │ │ │ └── usbd_lld_regs.h │ │ │ └── Source │ │ │ ├── usbd_lld_core.c │ │ │ └── usbd_lld_int.c │ └── GD32F30x_usbfs_library │ │ ├── device │ │ ├── class │ │ │ ├── audio │ │ │ │ ├── Include │ │ │ │ │ ├── audio_core.h │ │ │ │ │ └── audio_out_itf.h │ │ │ │ └── Source │ │ │ │ │ ├── audio_core.c │ │ │ │ │ └── audio_out_itf.c │ │ │ ├── cdc │ │ │ │ ├── Include │ │ │ │ │ └── cdc_acm_core.h │ │ │ │ └── Source │ │ │ │ │ └── cdc_acm_core.c │ │ │ ├── dfu │ │ │ │ ├── Include │ │ │ │ │ ├── dfu_core.h │ │ │ │ │ └── dfu_mem.h │ │ │ │ └── Source │ │ │ │ │ ├── dfu_core.c │ │ │ │ │ └── dfu_mem.c │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── custom_hid_core.h │ │ │ │ │ └── standard_hid_core.h │ │ │ │ └── Source │ │ │ │ │ ├── custom_hid_core.c │ │ │ │ │ └── standard_hid_core.c │ │ │ ├── iap │ │ │ │ ├── Include │ │ │ │ │ └── usb_iap_core.h │ │ │ │ └── Source │ │ │ │ │ └── usb_iap_core.c │ │ │ ├── msc │ │ │ │ ├── Include │ │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ │ ├── usbd_msc_core.h │ │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ └── Source │ │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ │ ├── usbd_msc_core.c │ │ │ │ │ └── usbd_msc_scsi.c │ │ │ └── printer │ │ │ │ ├── Include │ │ │ │ └── printer_core.h │ │ │ │ └── Source │ │ │ │ └── printer_core.c │ │ └── core │ │ │ ├── Include │ │ │ ├── usbd_core.h │ │ │ ├── usbd_enum.h │ │ │ └── usbd_transc.h │ │ │ └── Source │ │ │ ├── usbd_core.c │ │ │ ├── usbd_enum.c │ │ │ └── usbd_transc.c │ │ ├── driver │ │ ├── Include │ │ │ ├── drv_usb_core.h │ │ │ ├── drv_usb_dev.h │ │ │ ├── drv_usb_host.h │ │ │ ├── drv_usb_hw.h │ │ │ ├── drv_usb_regs.h │ │ │ ├── drv_usbd_int.h │ │ │ └── drv_usbh_int.h │ │ └── Source │ │ │ ├── drv_usb_core.c │ │ │ ├── drv_usb_dev.c │ │ │ ├── drv_usb_host.c │ │ │ ├── drv_usbd_int.c │ │ │ └── drv_usbh_int.c │ │ ├── host │ │ ├── class │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── usbh_hid_core.h │ │ │ │ │ └── usbh_standard_hid.h │ │ │ │ └── Source │ │ │ │ │ ├── usbh_hid_core.c │ │ │ │ │ └── usbh_standard_hid.c │ │ │ └── msc │ │ │ │ ├── Include │ │ │ │ ├── usbh_msc_bbb.h │ │ │ │ ├── usbh_msc_core.h │ │ │ │ └── usbh_msc_scsi.h │ │ │ │ └── Source │ │ │ │ ├── usbh_msc_bbb.c │ │ │ │ ├── usbh_msc_core.c │ │ │ │ ├── usbh_msc_fatfs.c │ │ │ │ └── usbh_msc_scsi.c │ │ └── core │ │ │ ├── Include │ │ │ ├── usbh_core.h │ │ │ ├── usbh_enum.h │ │ │ ├── usbh_pipe.h │ │ │ └── usbh_transc.h │ │ │ └── Source │ │ │ ├── usbh_core.c │ │ │ ├── usbh_enum.c │ │ │ ├── usbh_pipe.c │ │ │ └── usbh_transc.c │ │ └── ustd │ │ ├── class │ │ ├── cdc │ │ │ └── usb_cdc.h │ │ ├── hid │ │ │ └── usb_hid.h │ │ └── msc │ │ │ ├── msc_bbb.h │ │ │ ├── msc_scsi.h │ │ │ └── usb_msc.h │ │ └── common │ │ └── usb_ch9_std.h ├── GD32F3x0_firmware │ ├── CMSIS │ │ ├── GD │ │ │ └── GD32F3x0 │ │ │ │ ├── Include │ │ │ │ ├── gd32f3x0.h │ │ │ │ └── system_gd32f3x0.h │ │ │ │ └── Source │ │ │ │ ├── ARM │ │ │ │ └── startup_gd32f3x0.s │ │ │ │ ├── IAR │ │ │ │ └── startup_gd32f3x0.s │ │ │ │ └── system_gd32f3x0.c │ │ ├── core_cm4.h │ │ ├── core_cm4_simd.h │ │ ├── core_cmFunc.h │ │ └── core_cmInstr.h │ ├── GD32F3x0_standard_peripheral │ │ ├── Include │ │ │ ├── gd32f3x0_adc.h │ │ │ ├── gd32f3x0_cec.h │ │ │ ├── gd32f3x0_cmp.h │ │ │ ├── gd32f3x0_crc.h │ │ │ ├── gd32f3x0_ctc.h │ │ │ ├── gd32f3x0_dac.h │ │ │ ├── gd32f3x0_dbg.h │ │ │ ├── gd32f3x0_dma.h │ │ │ ├── gd32f3x0_exti.h │ │ │ ├── gd32f3x0_fmc.h │ │ │ ├── gd32f3x0_fwdgt.h │ │ │ ├── gd32f3x0_gpio.h │ │ │ ├── gd32f3x0_i2c.h │ │ │ ├── gd32f3x0_misc.h │ │ │ ├── gd32f3x0_pmu.h │ │ │ ├── gd32f3x0_rcu.h │ │ │ ├── gd32f3x0_rtc.h │ │ │ ├── gd32f3x0_spi.h │ │ │ ├── gd32f3x0_syscfg.h │ │ │ ├── gd32f3x0_timer.h │ │ │ ├── gd32f3x0_tsi.h │ │ │ ├── gd32f3x0_usart.h │ │ │ └── gd32f3x0_wwdgt.h │ │ └── Source │ │ │ ├── gd32f3x0_adc.c │ │ │ ├── gd32f3x0_cec.c │ │ │ ├── gd32f3x0_cmp.c │ │ │ ├── gd32f3x0_crc.c │ │ │ ├── gd32f3x0_ctc.c │ │ │ ├── gd32f3x0_dac.c │ │ │ ├── gd32f3x0_dbg.c │ │ │ ├── gd32f3x0_dma.c │ │ │ ├── gd32f3x0_exti.c │ │ │ ├── gd32f3x0_fmc.c │ │ │ ├── gd32f3x0_fwdgt.c │ │ │ ├── gd32f3x0_gpio.c │ │ │ ├── gd32f3x0_i2c.c │ │ │ ├── gd32f3x0_misc.c │ │ │ ├── gd32f3x0_pmu.c │ │ │ ├── gd32f3x0_rcu.c │ │ │ ├── gd32f3x0_rtc.c │ │ │ ├── gd32f3x0_spi.c │ │ │ ├── gd32f3x0_syscfg.c │ │ │ ├── gd32f3x0_timer.c │ │ │ ├── gd32f3x0_tsi.c │ │ │ ├── gd32f3x0_usart.c │ │ │ └── gd32f3x0_wwdgt.c │ └── GD32F3x0_usbfs_library │ │ ├── device │ │ ├── class │ │ │ ├── audio │ │ │ │ ├── Include │ │ │ │ │ ├── audio_core.h │ │ │ │ │ └── audio_out_itf.h │ │ │ │ └── Source │ │ │ │ │ ├── audio_core.c │ │ │ │ │ └── audio_out_itf.c │ │ │ ├── cdc │ │ │ │ ├── Include │ │ │ │ │ └── cdc_acm_core.h │ │ │ │ └── Source │ │ │ │ │ └── cdc_acm_core.c │ │ │ ├── dfu │ │ │ │ ├── Include │ │ │ │ │ ├── dfu_core.h │ │ │ │ │ └── dfu_mal.h │ │ │ │ └── Source │ │ │ │ │ ├── dfu_core.c │ │ │ │ │ └── dfu_mal.c │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── custom_hid_core.h │ │ │ │ │ └── standard_hid_core.h │ │ │ │ └── Source │ │ │ │ │ ├── custom_hid_core.c │ │ │ │ │ └── standard_hid_core.c │ │ │ ├── iap │ │ │ │ ├── Include │ │ │ │ │ └── usb_iap_core.h │ │ │ │ └── Source │ │ │ │ │ └── usb_iap_core.c │ │ │ ├── msc │ │ │ │ ├── Include │ │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ │ ├── usbd_msc_core.h │ │ │ │ │ ├── usbd_msc_data.h │ │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ └── Source │ │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ │ ├── usbd_msc_core.c │ │ │ │ │ ├── usbd_msc_data.c │ │ │ │ │ └── usbd_msc_scsi.c │ │ │ └── printer │ │ │ │ ├── Include │ │ │ │ └── printer_core.h │ │ │ │ └── Source │ │ │ │ └── printer_core.c │ │ └── core │ │ │ ├── Include │ │ │ ├── usbd_core.h │ │ │ ├── usbd_enum.h │ │ │ └── usbd_transc.h │ │ │ └── Source │ │ │ ├── usbd_core.c │ │ │ ├── usbd_enum.c │ │ │ └── usbd_transc.c │ │ ├── driver │ │ ├── Include │ │ │ ├── drv_usb_core.h │ │ │ ├── drv_usb_dev.h │ │ │ ├── drv_usb_host.h │ │ │ ├── drv_usb_hw.h │ │ │ ├── drv_usb_regs.h │ │ │ ├── drv_usbd_int.h │ │ │ └── drv_usbh_int.h │ │ └── Source │ │ │ ├── drv_usb_core.c │ │ │ ├── drv_usb_dev.c │ │ │ ├── drv_usb_host.c │ │ │ ├── drv_usbd_int.c │ │ │ └── drv_usbh_int.c │ │ ├── host │ │ ├── class │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── usbh_hid_core.h │ │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ │ └── usbh_hid_usage.h │ │ │ │ └── Source │ │ │ │ │ ├── usbh_hid_core.c │ │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ │ └── usbh_hid_parser.c │ │ │ └── msc │ │ │ │ ├── Include │ │ │ │ ├── usbh_msc_bbb.h │ │ │ │ ├── usbh_msc_core.h │ │ │ │ └── usbh_msc_scsi.h │ │ │ │ └── Source │ │ │ │ ├── usbh_msc_bbb.c │ │ │ │ ├── usbh_msc_core.c │ │ │ │ ├── usbh_msc_fatfs.c │ │ │ │ └── usbh_msc_scsi.c │ │ └── core │ │ │ ├── Include │ │ │ ├── usbh_core.h │ │ │ ├── usbh_enum.h │ │ │ ├── usbh_pipe.h │ │ │ └── usbh_transc.h │ │ │ └── Source │ │ │ ├── usbh_core.c │ │ │ ├── usbh_enum.c │ │ │ ├── usbh_pipe.c │ │ │ └── usbh_transc.c │ │ └── ustd │ │ ├── class │ │ ├── cdc │ │ │ └── usb_cdc.h │ │ ├── hid │ │ │ └── usb_hid.h │ │ └── msc │ │ │ ├── msc_bbb.h │ │ │ ├── msc_scsi.h │ │ │ └── usb_msc.h │ │ └── common │ │ └── usb_ch9_std.h └── startup │ ├── startup_gd32e23x.S │ ├── startup_gd32e508.S │ ├── startup_gd32e50x_cl.S │ ├── startup_gd32e50x_hd.S │ ├── startup_gd32e50x_xd.S │ ├── startup_gd32eprt.S │ ├── startup_gd32f10x_cl.S │ ├── startup_gd32f10x_hd.S │ ├── startup_gd32f10x_md.S │ ├── startup_gd32f10x_xd.S │ ├── startup_gd32f1x0.S │ ├── startup_gd32f30x_cl.S │ ├── startup_gd32f30x_hd.S │ ├── startup_gd32f30x_xd.S │ └── startup_gd32f3x0.S ├── tools ├── platformio │ ├── boards_remap.json │ └── platformio-build.py └── win │ ├── GD32 MCU ISP Console User Manual.docx │ ├── GD32_ISP_CLI.exe │ ├── GD_MCU_DLL.dll │ └── serial_upload.bat └── variants ├── GD32350G_START ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230C4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230C6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230C8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230C_START ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230F4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230F6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230F8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230G4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230G6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230G8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230K4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230K6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E230K8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32E503C_START ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103C4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103C6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103C8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103CB_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103R4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103R6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103R8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103RB_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103RC_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103RD_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103RE_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103RF_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103RG_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103RI_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103RK_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103T4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103T6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103T8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103TB_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103V8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103VB_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103VC_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103VD_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103VE_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103VF_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103VG_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103VI_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103VK_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103ZC_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103ZD_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103ZE_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103ZF_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103ZG_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103ZI_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F103ZK_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130C4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130C6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130C8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130F4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130F6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130F8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130G4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130G6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130G8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130K4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130K6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130K8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F130R8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F150C4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F150C6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F150C8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F150G4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F150G6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F150G8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F150K4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F150K6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F150K8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F150R4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F150R6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F150R8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F170C4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F170C6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F170C8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F170R8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F170T4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F170T6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F170T8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F190C4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F190C6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F190C8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F190R4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F190R6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F190R8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F190T4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F190T6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F190T8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303CB_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303CC_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303CE_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303CG_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303RB_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303RC_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303RE_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303RG_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303RI_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303RK_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303VB_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303VC_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303VE_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303VG_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303VI_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303VK_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303ZC_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303ZE_EVAL ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303ZE_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303ZG_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303ZI_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F303ZK_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F307VG_MBED ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330C4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330C6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330C8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330CB_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330F4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330F6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330F8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330G4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330G6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330G8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330K4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330K6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330K8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330R8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F330RB_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350C4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350C6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350C8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350CB_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350G4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350G6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350G8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350K4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350K6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350K8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350R4_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350R6_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350R8_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── GD32F350RB_GENERIC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h ├── WEACT_BLUEPILLPLUS_GD32F303CC ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h └── keyboardio_model_100 ├── PeripheralNames.h ├── PeripheralPins.c ├── PinNamesVar.h ├── ldscript.ld ├── variant.cpp └── variant.h /.astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/.astylerc -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .dir-locals.el 3 | TAGS 4 | *.bak 5 | package_gd32_arcayi_index.json 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/README.md -------------------------------------------------------------------------------- /boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/boards.txt -------------------------------------------------------------------------------- /cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /cores/arduino/CDCACM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/CDCACM.cpp -------------------------------------------------------------------------------- /cores/arduino/CDCACM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/CDCACM.h -------------------------------------------------------------------------------- /cores/arduino/HardwareRTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/HardwareRTC.cpp -------------------------------------------------------------------------------- /cores/arduino/HardwareRTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/HardwareRTC.h -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/HardwareSerial.cpp -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/HardwareSerial.h -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/HardwareSerial1.cpp -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/HardwareSerial2.cpp -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/HardwareSerial3.cpp -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/HardwareSerial4.cpp -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/HardwareSerial5.cpp -------------------------------------------------------------------------------- /cores/arduino/HardwareTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/HardwareTimer.cpp -------------------------------------------------------------------------------- /cores/arduino/HardwareTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/HardwareTimer.h -------------------------------------------------------------------------------- /cores/arduino/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/Tone.cpp -------------------------------------------------------------------------------- /cores/arduino/USBCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/USBCore.cpp -------------------------------------------------------------------------------- /cores/arduino/USBCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/USBCore.h -------------------------------------------------------------------------------- /cores/arduino/USBDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/USBDefs.h -------------------------------------------------------------------------------- /cores/arduino/WInterrupts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/WInterrupts.cpp -------------------------------------------------------------------------------- /cores/arduino/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/WMath.cpp -------------------------------------------------------------------------------- /cores/arduino/abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/abi.cpp -------------------------------------------------------------------------------- /cores/arduino/analog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/analog.cpp -------------------------------------------------------------------------------- /cores/arduino/analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/analog.h -------------------------------------------------------------------------------- /cores/arduino/api/ArduinoAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/ArduinoAPI.h -------------------------------------------------------------------------------- /cores/arduino/api/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Binary.h -------------------------------------------------------------------------------- /cores/arduino/api/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Client.h -------------------------------------------------------------------------------- /cores/arduino/api/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Common.cpp -------------------------------------------------------------------------------- /cores/arduino/api/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Common.h -------------------------------------------------------------------------------- /cores/arduino/api/Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Compat.h -------------------------------------------------------------------------------- /cores/arduino/api/HardwareI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/HardwareI2C.h -------------------------------------------------------------------------------- /cores/arduino/api/HardwareSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/HardwareSPI.h -------------------------------------------------------------------------------- /cores/arduino/api/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/HardwareSerial.h -------------------------------------------------------------------------------- /cores/arduino/api/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/IPAddress.cpp -------------------------------------------------------------------------------- /cores/arduino/api/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/IPAddress.h -------------------------------------------------------------------------------- /cores/arduino/api/Interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Interrupts.h -------------------------------------------------------------------------------- /cores/arduino/api/PluggableUSB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/PluggableUSB.cpp -------------------------------------------------------------------------------- /cores/arduino/api/PluggableUSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/PluggableUSB.h -------------------------------------------------------------------------------- /cores/arduino/api/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Print.cpp -------------------------------------------------------------------------------- /cores/arduino/api/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Print.h -------------------------------------------------------------------------------- /cores/arduino/api/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Printable.h -------------------------------------------------------------------------------- /cores/arduino/api/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/RingBuffer.h -------------------------------------------------------------------------------- /cores/arduino/api/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Server.h -------------------------------------------------------------------------------- /cores/arduino/api/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Stream.cpp -------------------------------------------------------------------------------- /cores/arduino/api/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Stream.h -------------------------------------------------------------------------------- /cores/arduino/api/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/String.cpp -------------------------------------------------------------------------------- /cores/arduino/api/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/String.h -------------------------------------------------------------------------------- /cores/arduino/api/USBAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/USBAPI.h -------------------------------------------------------------------------------- /cores/arduino/api/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/Udp.h -------------------------------------------------------------------------------- /cores/arduino/api/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/WCharacter.h -------------------------------------------------------------------------------- /cores/arduino/api/deprecated/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/deprecated/Client.h -------------------------------------------------------------------------------- /cores/arduino/api/deprecated/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/deprecated/IPAddress.h -------------------------------------------------------------------------------- /cores/arduino/api/deprecated/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/deprecated/Print.h -------------------------------------------------------------------------------- /cores/arduino/api/deprecated/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/deprecated/Printable.h -------------------------------------------------------------------------------- /cores/arduino/api/deprecated/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/deprecated/Server.h -------------------------------------------------------------------------------- /cores/arduino/api/deprecated/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/deprecated/Stream.h -------------------------------------------------------------------------------- /cores/arduino/api/deprecated/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/deprecated/Udp.h -------------------------------------------------------------------------------- /cores/arduino/api/deprecated/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/deprecated/WString.h -------------------------------------------------------------------------------- /cores/arduino/api/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/api/itoa.h -------------------------------------------------------------------------------- /cores/arduino/fatal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/fatal.cpp -------------------------------------------------------------------------------- /cores/arduino/fatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/fatal.h -------------------------------------------------------------------------------- /cores/arduino/gd32/PeripheralPins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/PeripheralPins.h -------------------------------------------------------------------------------- /cores/arduino/gd32/PinConfigured.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/PinConfigured.h -------------------------------------------------------------------------------- /cores/arduino/gd32/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/PinNames.h -------------------------------------------------------------------------------- /cores/arduino/gd32/PortNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/PortNames.h -------------------------------------------------------------------------------- /cores/arduino/gd32/Source/gd32xxyy_src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/Source/gd32xxyy_src.c -------------------------------------------------------------------------------- /cores/arduino/gd32/cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/cmsis.h -------------------------------------------------------------------------------- /cores/arduino/gd32/cmsis_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/cmsis_nvic.h -------------------------------------------------------------------------------- /cores/arduino/gd32/gd32_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/gd32_def.c -------------------------------------------------------------------------------- /cores/arduino/gd32/gd32_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/gd32_def.h -------------------------------------------------------------------------------- /cores/arduino/gd32/gd32e50x_libopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/gd32e50x_libopt.h -------------------------------------------------------------------------------- /cores/arduino/gd32/gd32f10x_libopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/gd32f10x_libopt.h -------------------------------------------------------------------------------- /cores/arduino/gd32/gd32f10x_remap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/gd32f10x_remap.h -------------------------------------------------------------------------------- /cores/arduino/gd32/gd32f1x0_libopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/gd32f1x0_libopt.h -------------------------------------------------------------------------------- /cores/arduino/gd32/gd32f30x_libopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/gd32f30x_libopt.h -------------------------------------------------------------------------------- /cores/arduino/gd32/gd32f3x0_libopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/gd32f3x0_libopt.h -------------------------------------------------------------------------------- /cores/arduino/gd32/gd32xxyy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/gd32xxyy.h -------------------------------------------------------------------------------- /cores/arduino/gd32/gpio_interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/gpio_interrupt.c -------------------------------------------------------------------------------- /cores/arduino/gd32/gpio_interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/gpio_interrupt.h -------------------------------------------------------------------------------- /cores/arduino/gd32/pinmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/pinmap.c -------------------------------------------------------------------------------- /cores/arduino/gd32/pinmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/pinmap.h -------------------------------------------------------------------------------- /cores/arduino/gd32/pins_arduino.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/pins_arduino.c -------------------------------------------------------------------------------- /cores/arduino/gd32/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/pins_arduino.h -------------------------------------------------------------------------------- /cores/arduino/gd32/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/rtc.c -------------------------------------------------------------------------------- /cores/arduino/gd32/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/rtc.h -------------------------------------------------------------------------------- /cores/arduino/gd32/startup_gd32xxyy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/startup_gd32xxyy.S -------------------------------------------------------------------------------- /cores/arduino/gd32/system_gd32xxyy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/system_gd32xxyy.c -------------------------------------------------------------------------------- /cores/arduino/gd32/systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/systick.c -------------------------------------------------------------------------------- /cores/arduino/gd32/systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/systick.h -------------------------------------------------------------------------------- /cores/arduino/gd32/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/timer.c -------------------------------------------------------------------------------- /cores/arduino/gd32/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/timer.h -------------------------------------------------------------------------------- /cores/arduino/gd32/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/uart.c -------------------------------------------------------------------------------- /cores/arduino/gd32/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/uart.h -------------------------------------------------------------------------------- /cores/arduino/gd32/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/usb.c -------------------------------------------------------------------------------- /cores/arduino/gd32/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/usb.h -------------------------------------------------------------------------------- /cores/arduino/gd32/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/gd32/usbd_conf.h -------------------------------------------------------------------------------- /cores/arduino/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/hooks.c -------------------------------------------------------------------------------- /cores/arduino/itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/itoa.c -------------------------------------------------------------------------------- /cores/arduino/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/main.cpp -------------------------------------------------------------------------------- /cores/arduino/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/new.cpp -------------------------------------------------------------------------------- /cores/arduino/pwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/pwm.cpp -------------------------------------------------------------------------------- /cores/arduino/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/pwm.h -------------------------------------------------------------------------------- /cores/arduino/wiring_analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/wiring_analog.c -------------------------------------------------------------------------------- /cores/arduino/wiring_analog_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/wiring_analog_extra.h -------------------------------------------------------------------------------- /cores/arduino/wiring_digital.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/wiring_digital.c -------------------------------------------------------------------------------- /cores/arduino/wiring_digital_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/wiring_digital_extra.h -------------------------------------------------------------------------------- /cores/arduino/wiring_pulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/wiring_pulse.cpp -------------------------------------------------------------------------------- /cores/arduino/wiring_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/wiring_shift.c -------------------------------------------------------------------------------- /cores/arduino/wiring_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/cores/arduino/wiring_time.c -------------------------------------------------------------------------------- /docs/first_blinky_gd32f303cc.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/docs/first_blinky_gd32f303cc.mp4 -------------------------------------------------------------------------------- /docs/gd32f303cc_board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/docs/gd32f303cc_board.jpg -------------------------------------------------------------------------------- /extras/generate_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/extras/generate_index.py -------------------------------------------------------------------------------- /extras/package_gd32_index.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/extras/package_gd32_index.json.tpl -------------------------------------------------------------------------------- /libraries/Analog/ignored.h: -------------------------------------------------------------------------------- 1 | #erro DO NOTHING,JUST FOR ACCESS LIBRARY EXAMPLES -------------------------------------------------------------------------------- /libraries/Analog/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Analog/keywords.txt -------------------------------------------------------------------------------- /libraries/Blink/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Blink/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /libraries/Blink/ignored.h: -------------------------------------------------------------------------------- 1 | #erro DO NOTHING,JUST FOR ACCESS LIBRARY EXAMPLES -------------------------------------------------------------------------------- /libraries/Blink/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Blink/keywords.txt -------------------------------------------------------------------------------- /libraries/EEPROM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/EEPROM/library.properties -------------------------------------------------------------------------------- /libraries/EEPROM/src/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/EEPROM/src/EEPROM.h -------------------------------------------------------------------------------- /libraries/FlashStorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FlashStorage/README.md -------------------------------------------------------------------------------- /libraries/FlashStorage/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FlashStorage/library.properties -------------------------------------------------------------------------------- /libraries/FlashStorage/src/FlashStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FlashStorage/src/FlashStorage.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/cmsis_os2/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/cmsis_os2/cmsis_os.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/cmsis_os2/cmsis_os1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/cmsis_os2/cmsis_os1.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/cmsis_os2/cmsis_os2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/cmsis_os2/cmsis_os2.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/cmsis_os2/cmsis_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/cmsis_os2/cmsis_os2.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/cmsis_os2/handlers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/cmsis_os2/handlers.txt -------------------------------------------------------------------------------- /libraries/FreeRTOS/cmsis_os2/os_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/cmsis_os2/os_systick.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/cmsis_os2/os_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/cmsis_os2/os_tick.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/library.json -------------------------------------------------------------------------------- /libraries/FreeRTOS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/library.properties -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/FreeRTOS.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/GD32_Arduino.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/GD32_Arduino.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/StackMacros.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/atomic.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/croutine.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/croutine.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/event_groups.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/event_groups.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/heap/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/heap/heap_4.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/list.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/list.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/message_buffer.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/mpu_prototypes.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/mpu_wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/mpu_wrappers.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/mpu_wrappers.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/portable.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/portasm.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/portmacro.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/projdefs.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/queue.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/queue.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/semphr.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/stack_macros.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/stdint.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/stdint.readme -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/stream_buffer.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/stream_buffer.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/task.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/tasks.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/timers.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/timers.h -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/used_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/used_port.c -------------------------------------------------------------------------------- /libraries/FreeRTOS/src/used_portasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/FreeRTOS/src/used_portasm.c -------------------------------------------------------------------------------- /libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/SPI/library.properties -------------------------------------------------------------------------------- /libraries/SPI/src/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/SPI/src/SPI.cpp -------------------------------------------------------------------------------- /libraries/SPI/src/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/SPI/src/SPI.h -------------------------------------------------------------------------------- /libraries/SPI/src/utility/drv_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/SPI/src/utility/drv_spi.c -------------------------------------------------------------------------------- /libraries/SPI/src/utility/drv_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/SPI/src/utility/drv_spi.h -------------------------------------------------------------------------------- /libraries/Servo/examples/Knob/Knob.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Servo/examples/Knob/Knob.ino -------------------------------------------------------------------------------- /libraries/Servo/examples/Sweep/Sweep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Servo/examples/Sweep/Sweep.ino -------------------------------------------------------------------------------- /libraries/Servo/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Servo/keywords.txt -------------------------------------------------------------------------------- /libraries/Servo/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Servo/library.properties -------------------------------------------------------------------------------- /libraries/Servo/src/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Servo/src/Servo.cpp -------------------------------------------------------------------------------- /libraries/Servo/src/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Servo/src/Servo.h -------------------------------------------------------------------------------- /libraries/Timer/ignored.h: -------------------------------------------------------------------------------- 1 | #erro DO NOTHING,JUST FOR ACCESS LIBRARY EXAMPLES -------------------------------------------------------------------------------- /libraries/Timer/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Timer/keywords.txt -------------------------------------------------------------------------------- /libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Wire/library.properties -------------------------------------------------------------------------------- /libraries/Wire/src/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Wire/src/Wire.cpp -------------------------------------------------------------------------------- /libraries/Wire/src/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Wire/src/Wire.h -------------------------------------------------------------------------------- /libraries/Wire/src/Wire1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Wire/src/Wire1.cpp -------------------------------------------------------------------------------- /libraries/Wire/src/Wire2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Wire/src/Wire2.cpp -------------------------------------------------------------------------------- /libraries/Wire/src/utility/twi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Wire/src/utility/twi.cpp -------------------------------------------------------------------------------- /libraries/Wire/src/utility/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/Wire/src/utility/twi.h -------------------------------------------------------------------------------- /libraries/pwm/ignored.h: -------------------------------------------------------------------------------- 1 | #erro DO NOTHING,JUST FOR ACCESS LIBRARY EXAMPLES -------------------------------------------------------------------------------- /libraries/pwm/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/pwm/keywords.txt -------------------------------------------------------------------------------- /libraries/rtc/examples/rtc/rtc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/rtc/examples/rtc/rtc.ino -------------------------------------------------------------------------------- /libraries/rtc/ignored.h: -------------------------------------------------------------------------------- 1 | #erro DO NOTHING,JUST FOR ACCESS LIBRARY EXAMPLES -------------------------------------------------------------------------------- /libraries/rtc/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/libraries/rtc/keywords.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/package.json -------------------------------------------------------------------------------- /package_gd32_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/package_gd32_index.json -------------------------------------------------------------------------------- /platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/platform.txt -------------------------------------------------------------------------------- /system/GD32F10x_firmware/CMSIS/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/GD32F10x_firmware/CMSIS/core_cm3.h -------------------------------------------------------------------------------- /system/GD32F1x0_firmware/CMSIS/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/GD32F1x0_firmware/CMSIS/core_cm3.h -------------------------------------------------------------------------------- /system/GD32F30x_firmware/CMSIS/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/GD32F30x_firmware/CMSIS/core_cm4.h -------------------------------------------------------------------------------- /system/GD32F3x0_firmware/CMSIS/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/GD32F3x0_firmware/CMSIS/core_cm4.h -------------------------------------------------------------------------------- /system/startup/startup_gd32e23x.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32e23x.S -------------------------------------------------------------------------------- /system/startup/startup_gd32e508.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32e508.S -------------------------------------------------------------------------------- /system/startup/startup_gd32e50x_cl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32e50x_cl.S -------------------------------------------------------------------------------- /system/startup/startup_gd32e50x_hd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32e50x_hd.S -------------------------------------------------------------------------------- /system/startup/startup_gd32e50x_xd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32e50x_xd.S -------------------------------------------------------------------------------- /system/startup/startup_gd32eprt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32eprt.S -------------------------------------------------------------------------------- /system/startup/startup_gd32f10x_cl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32f10x_cl.S -------------------------------------------------------------------------------- /system/startup/startup_gd32f10x_hd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32f10x_hd.S -------------------------------------------------------------------------------- /system/startup/startup_gd32f10x_md.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32f10x_md.S -------------------------------------------------------------------------------- /system/startup/startup_gd32f10x_xd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32f10x_xd.S -------------------------------------------------------------------------------- /system/startup/startup_gd32f1x0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32f1x0.S -------------------------------------------------------------------------------- /system/startup/startup_gd32f30x_cl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32f30x_cl.S -------------------------------------------------------------------------------- /system/startup/startup_gd32f30x_hd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32f30x_hd.S -------------------------------------------------------------------------------- /system/startup/startup_gd32f30x_xd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32f30x_xd.S -------------------------------------------------------------------------------- /system/startup/startup_gd32f3x0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/system/startup/startup_gd32f3x0.S -------------------------------------------------------------------------------- /tools/platformio/boards_remap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/tools/platformio/boards_remap.json -------------------------------------------------------------------------------- /tools/platformio/platformio-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/tools/platformio/platformio-build.py -------------------------------------------------------------------------------- /tools/win/GD32_ISP_CLI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/tools/win/GD32_ISP_CLI.exe -------------------------------------------------------------------------------- /tools/win/GD_MCU_DLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/tools/win/GD_MCU_DLL.dll -------------------------------------------------------------------------------- /tools/win/serial_upload.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/tools/win/serial_upload.bat -------------------------------------------------------------------------------- /variants/GD32350G_START/PeripheralNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32350G_START/PeripheralNames.h -------------------------------------------------------------------------------- /variants/GD32350G_START/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32350G_START/PeripheralPins.c -------------------------------------------------------------------------------- /variants/GD32350G_START/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32350G_START/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32350G_START/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32350G_START/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32350G_START/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32350G_START/variant.cpp -------------------------------------------------------------------------------- /variants/GD32350G_START/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32350G_START/variant.h -------------------------------------------------------------------------------- /variants/GD32E230C4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230C4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230C4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230C4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32E230C6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230C6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230C6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230C6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32E230C8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230C8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230C8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230C8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32E230C_START/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C_START/PeripheralPins.c -------------------------------------------------------------------------------- /variants/GD32E230C_START/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C_START/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230C_START/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C_START/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230C_START/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C_START/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230C_START/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230C_START/variant.h -------------------------------------------------------------------------------- /variants/GD32E230F4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230F4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230F4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230F4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230F4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230F4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230F4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230F4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32E230F6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230F6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230F6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230F6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230F6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230F6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230F6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230F6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32E230F8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230F8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230F8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230F8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230F8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230F8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230F8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230F8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32E230G4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230G4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230G4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230G4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230G4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230G4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230G4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230G4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32E230G6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230G6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230G6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230G6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230G6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230G6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230G6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230G6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32E230G8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230G8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230G8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230G8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230G8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230G8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230G8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230G8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32E230K4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230K4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230K4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230K4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230K4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230K4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230K4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230K4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32E230K6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230K6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230K6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230K6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230K6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230K6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230K6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230K6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32E230K8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230K8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E230K8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230K8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E230K8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230K8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E230K8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E230K8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32E503C_START/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E503C_START/PeripheralPins.c -------------------------------------------------------------------------------- /variants/GD32E503C_START/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E503C_START/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32E503C_START/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E503C_START/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32E503C_START/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E503C_START/variant.cpp -------------------------------------------------------------------------------- /variants/GD32E503C_START/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32E503C_START/variant.h -------------------------------------------------------------------------------- /variants/GD32F103C4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103C4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103C4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103C4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103C4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103C4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103C4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103C4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103C6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103C6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103C6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103C6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103C6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103C6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103C6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103C6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103C8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103C8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103C8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103C8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103C8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103C8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103C8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103C8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103CB_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103CB_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103CB_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103CB_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103CB_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103CB_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103CB_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103CB_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103R4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103R4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103R4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103R4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103R4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103R4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103R4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103R4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103R6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103R6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103R6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103R6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103R6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103R6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103R6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103R6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103R8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103R8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103R8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103R8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103R8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103R8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103R8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103R8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103RB_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RB_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103RB_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RB_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103RB_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RB_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103RB_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RB_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103RC_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RC_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103RC_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RC_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103RC_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RC_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103RC_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RC_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103RD_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RD_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103RD_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RD_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103RD_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RD_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103RD_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RD_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103RE_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RE_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103RE_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RE_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103RE_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RE_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103RE_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RE_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103RF_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RF_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103RF_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RF_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103RF_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RF_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103RF_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RF_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103RG_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RG_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103RG_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RG_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103RG_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RG_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103RG_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RG_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103RI_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RI_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103RI_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RI_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103RI_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RI_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103RI_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RI_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103RK_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RK_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103RK_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RK_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103RK_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RK_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103RK_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103RK_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103T4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103T4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103T4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103T4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103T4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103T4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103T4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103T4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103T6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103T6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103T6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103T6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103T6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103T6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103T6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103T6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103T8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103T8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103T8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103T8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103T8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103T8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103T8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103T8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103TB_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103TB_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103TB_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103TB_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103TB_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103TB_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103TB_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103TB_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103V8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103V8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103V8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103V8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103V8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103V8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103V8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103V8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103VB_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VB_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103VB_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VB_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103VB_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VB_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103VB_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VB_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103VC_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VC_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103VC_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VC_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103VC_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VC_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103VC_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VC_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103VD_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VD_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103VD_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VD_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103VD_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VD_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103VD_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VD_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103VE_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VE_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103VE_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VE_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103VE_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VE_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103VE_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VE_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103VF_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VF_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103VF_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VF_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103VF_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VF_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103VF_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VF_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103VG_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VG_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103VG_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VG_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103VG_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VG_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103VG_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VG_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103VI_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VI_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103VI_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VI_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103VI_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VI_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103VI_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VI_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103VK_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VK_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103VK_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VK_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103VK_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VK_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103VK_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103VK_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103ZC_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZC_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103ZC_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZC_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103ZC_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZC_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103ZC_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZC_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103ZD_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZD_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103ZD_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZD_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103ZD_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZD_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103ZD_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZD_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103ZE_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZE_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103ZE_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZE_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103ZE_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZE_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103ZE_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZE_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103ZF_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZF_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103ZF_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZF_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103ZF_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZF_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103ZF_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZF_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103ZG_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZG_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103ZG_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZG_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103ZG_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZG_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103ZG_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZG_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103ZI_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZI_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103ZI_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZI_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103ZI_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZI_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103ZI_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZI_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F103ZK_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZK_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F103ZK_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZK_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F103ZK_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZK_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F103ZK_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F103ZK_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130C4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130C4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130C4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130C4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130C4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130C4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130C4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130C4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130C6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130C6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130C6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130C6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130C6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130C6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130C6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130C6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130C8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130C8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130C8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130C8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130C8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130C8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130C8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130C8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130F4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130F4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130F4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130F4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130F4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130F4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130F4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130F4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130F6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130F6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130F6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130F6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130F6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130F6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130F6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130F6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130F8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130F8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130F8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130F8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130F8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130F8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130F8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130F8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130G4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130G4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130G4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130G4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130G4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130G4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130G4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130G4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130G6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130G6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130G6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130G6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130G6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130G6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130G6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130G6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130G8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130G8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130G8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130G8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130G8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130G8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130G8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130G8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130K4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130K4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130K4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130K4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130K4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130K4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130K4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130K4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130K6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130K6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130K6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130K6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130K6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130K6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130K6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130K6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130K8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130K8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130K8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130K8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130K8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130K8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130K8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130K8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F130R8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130R8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F130R8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130R8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F130R8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130R8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F130R8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F130R8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F150C4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150C4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F150C4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150C4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F150C4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150C4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F150C4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150C4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F150C6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150C6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F150C6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150C6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F150C6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150C6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F150C6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150C6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F150C8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150C8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F150C8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150C8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F150C8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150C8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F150C8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150C8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F150G4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150G4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F150G4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150G4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F150G4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150G4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F150G4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150G4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F150G6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150G6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F150G6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150G6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F150G6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150G6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F150G6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150G6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F150G8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150G8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F150G8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150G8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F150G8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150G8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F150G8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150G8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F150K4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150K4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F150K4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150K4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F150K4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150K4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F150K4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150K4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F150K6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150K6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F150K6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150K6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F150K6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150K6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F150K6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150K6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F150K8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150K8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F150K8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150K8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F150K8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150K8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F150K8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150K8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F150R4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150R4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F150R4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150R4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F150R4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150R4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F150R4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150R4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F150R6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150R6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F150R6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150R6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F150R6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150R6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F150R6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150R6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F150R8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150R8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F150R8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150R8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F150R8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150R8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F150R8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F150R8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F170C4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170C4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F170C4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170C4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F170C4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170C4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F170C4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170C4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F170C6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170C6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F170C6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170C6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F170C6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170C6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F170C6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170C6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F170C8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170C8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F170C8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170C8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F170C8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170C8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F170C8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170C8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F170R8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170R8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F170R8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170R8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F170R8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170R8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F170R8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170R8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F170T4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170T4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F170T4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170T4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F170T4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170T4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F170T4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170T4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F170T6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170T6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F170T6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170T6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F170T6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170T6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F170T6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170T6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F170T8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170T8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F170T8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170T8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F170T8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170T8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F170T8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F170T8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F190C4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190C4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F190C4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190C4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F190C4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190C4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F190C4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190C4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F190C6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190C6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F190C6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190C6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F190C6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190C6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F190C6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190C6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F190C8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190C8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F190C8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190C8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F190C8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190C8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F190C8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190C8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F190R4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190R4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F190R4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190R4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F190R4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190R4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F190R4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190R4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F190R6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190R6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F190R6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190R6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F190R6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190R6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F190R6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190R6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F190R8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190R8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F190R8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190R8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F190R8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190R8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F190R8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190R8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F190T4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190T4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F190T4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190T4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F190T4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190T4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F190T4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190T4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F190T6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190T6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F190T6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190T6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F190T6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190T6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F190T6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190T6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F190T8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190T8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F190T8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190T8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F190T8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190T8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F190T8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F190T8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303CB_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CB_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303CB_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CB_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303CB_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CB_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303CB_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CB_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303CC_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CC_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303CC_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CC_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303CC_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CC_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303CC_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CC_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303CE_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CE_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303CE_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CE_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303CE_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CE_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303CE_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CE_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303CG_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CG_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303CG_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CG_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303CG_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CG_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303CG_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303CG_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303RB_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RB_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303RB_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RB_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303RB_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RB_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303RB_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RB_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303RC_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RC_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303RC_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RC_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303RC_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RC_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303RC_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RC_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303RE_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RE_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303RE_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RE_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303RE_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RE_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303RE_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RE_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303RG_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RG_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303RG_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RG_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303RG_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RG_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303RG_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RG_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303RI_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RI_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303RI_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RI_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303RI_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RI_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303RI_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RI_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303RK_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RK_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303RK_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RK_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303RK_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RK_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303RK_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303RK_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303VB_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VB_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303VB_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VB_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303VB_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VB_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303VB_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VB_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303VC_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VC_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303VC_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VC_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303VC_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VC_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303VC_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VC_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303VE_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VE_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303VE_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VE_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303VE_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VE_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303VE_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VE_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303VG_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VG_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303VG_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VG_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303VG_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VG_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303VG_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VG_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303VI_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VI_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303VI_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VI_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303VI_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VI_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303VI_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VI_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303VK_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VK_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303VK_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VK_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303VK_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VK_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303VK_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303VK_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303ZC_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZC_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303ZC_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZC_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303ZC_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZC_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303ZC_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZC_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303ZE_EVAL/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZE_EVAL/PeripheralPins.c -------------------------------------------------------------------------------- /variants/GD32F303ZE_EVAL/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZE_EVAL/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303ZE_EVAL/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZE_EVAL/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303ZE_EVAL/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZE_EVAL/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303ZE_EVAL/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZE_EVAL/variant.h -------------------------------------------------------------------------------- /variants/GD32F303ZE_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZE_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303ZE_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZE_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303ZE_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZE_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303ZE_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZE_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303ZG_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZG_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303ZG_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZG_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303ZG_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZG_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303ZG_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZG_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303ZI_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZI_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303ZI_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZI_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303ZI_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZI_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303ZI_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZI_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F303ZK_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZK_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F303ZK_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZK_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F303ZK_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZK_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F303ZK_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F303ZK_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F307VG_MBED/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F307VG_MBED/PeripheralPins.c -------------------------------------------------------------------------------- /variants/GD32F307VG_MBED/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F307VG_MBED/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F307VG_MBED/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F307VG_MBED/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F307VG_MBED/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F307VG_MBED/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F307VG_MBED/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F307VG_MBED/variant.h -------------------------------------------------------------------------------- /variants/GD32F330C4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330C4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330C4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330C4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330C4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330C4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330C4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330C4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330C6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330C6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330C6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330C6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330C6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330C6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330C6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330C6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330C8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330C8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330C8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330C8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330C8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330C8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330C8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330C8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330CB_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330CB_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330CB_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330CB_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330CB_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330CB_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330CB_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330CB_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330F4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330F4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330F4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330F4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330F4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330F4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330F4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330F4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330F6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330F6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330F6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330F6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330F6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330F6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330F6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330F6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330F8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330F8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330F8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330F8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330F8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330F8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330F8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330F8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330G4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330G4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330G4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330G4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330G4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330G4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330G4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330G4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330G6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330G6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330G6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330G6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330G6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330G6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330G6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330G6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330G8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330G8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330G8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330G8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330G8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330G8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330G8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330G8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330K4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330K4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330K4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330K4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330K4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330K4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330K4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330K4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330K6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330K6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330K6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330K6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330K6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330K6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330K6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330K6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330K8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330K8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330K8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330K8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330K8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330K8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330K8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330K8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330R8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330R8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330R8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330R8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330R8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330R8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330R8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330R8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F330RB_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330RB_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F330RB_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330RB_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F330RB_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330RB_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F330RB_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F330RB_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350C4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350C4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F350C4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350C4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F350C4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350C4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F350C4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350C4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350C6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350C6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F350C6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350C6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F350C6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350C6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F350C6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350C6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350C8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350C8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F350C8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350C8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F350C8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350C8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F350C8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350C8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350CB_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350CB_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F350CB_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350CB_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F350CB_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350CB_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F350CB_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350CB_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350G4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350G4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F350G4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350G4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F350G4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350G4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F350G4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350G4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350G6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350G6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F350G6_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350G6_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F350G6_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350G6_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F350G6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350G6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350G8_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350G8_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F350G8_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350G8_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F350G8_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350G8_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F350G8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350G8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350K4_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350K4_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F350K4_GENERIC/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350K4_GENERIC/ldscript.ld -------------------------------------------------------------------------------- /variants/GD32F350K4_GENERIC/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350K4_GENERIC/variant.cpp -------------------------------------------------------------------------------- /variants/GD32F350K4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350K4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350K6_GENERIC/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350K6_GENERIC/PinNamesVar.h -------------------------------------------------------------------------------- /variants/GD32F350K6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350K6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350K8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350K8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350R4_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350R4_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350R6_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350R6_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350R8_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350R8_GENERIC/variant.h -------------------------------------------------------------------------------- /variants/GD32F350RB_GENERIC/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/ArduinoCore-GD32/HEAD/variants/GD32F350RB_GENERIC/variant.h --------------------------------------------------------------------------------