├── .github ├── bors.toml ├── dependabot.yml └── workflows │ ├── README-nightlies.md │ ├── ci.yaml │ ├── gh-pages.yaml │ ├── mmaps_main.yaml │ ├── mmaps_pr.yaml │ └── nightlies.yaml ├── .gitignore ├── .prettierrc.yaml ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile ├── README.md ├── cortex_m ├── .gitignore ├── Makefile ├── README.md ├── armv6m.svd ├── armv6m.yaml ├── armv7em.svd ├── armv7em.yaml ├── armv7m.svd ├── armv7m.yaml ├── armv8m.svd ├── armv8m.yaml └── peripherals │ ├── bak │ ├── cpb.yaml │ ├── cpuid_v6.yaml │ ├── cpuid_v7.yaml │ ├── dcb.yaml │ ├── dwt.yaml │ ├── fpb.yaml │ ├── fpu.yaml │ ├── itm.yaml │ ├── mpu.yaml │ ├── nvic.yaml │ ├── nvic_v6.yaml │ ├── nvic_v7.yaml │ ├── scb.yaml │ ├── syst.yaml │ └── tpiu.yaml │ ├── cpb.yaml │ ├── cpuid_v6.yaml │ ├── cpuid_v7.yaml │ ├── dcb.yaml │ ├── dwt.yaml │ ├── fpb.yaml │ ├── fpu.yaml │ ├── itm.yaml │ ├── mpu.yaml │ ├── nvic.yaml │ ├── nvic_v6.yaml │ ├── nvic_v7.yaml │ ├── scb.yaml │ ├── scb_v7.yaml │ ├── syst.yaml │ └── tpiu.yaml ├── devices ├── common_patches │ ├── gd32e1xx.yaml │ ├── gd32e23x.yaml │ ├── gd32e50x.yaml │ ├── gd32f130_150.yaml │ ├── gd32f170_190.yaml │ ├── gd32f1x0.yaml │ ├── gd32f205_207.yaml │ ├── gd32f20x.yaml │ ├── gd32f30x.yaml │ └── gd32f425.yaml ├── gd32c103.yaml ├── gd32c113.yaml ├── gd32e103.yaml ├── gd32e230.yaml ├── gd32e231.yaml ├── gd32e503.yaml ├── gd32e505.yaml ├── gd32e507.yaml ├── gd32e508.yaml ├── gd32f130.yaml ├── gd32f150.yaml ├── gd32f170.yaml ├── gd32f190.yaml ├── gd32f205.yaml ├── gd32f207.yaml ├── gd32f303.yaml ├── gd32f305.yaml ├── gd32f307.yaml └── gd32f425.yaml ├── gd32_part_table.yaml ├── peripherals ├── adc │ ├── adc.yaml │ ├── adc_common.yaml │ ├── adc_e1.yaml │ ├── adc_f2.yaml │ ├── adc_f3.yaml │ ├── adc_high.yaml │ ├── adc_high_f2_f3.yaml │ ├── adc_vbat.yaml │ ├── eteic.yaml │ └── swrcst.yaml ├── can │ ├── can.yaml │ ├── can_c1.yaml │ ├── can_common.yaml │ ├── can_f2_f3.yaml │ └── phyctl.yaml ├── cmp │ ├── cmp.yaml │ └── cmp_wnd.yaml ├── crc │ ├── crc.yaml │ └── rev_idata.yaml ├── dac │ ├── dac_1ch.yaml │ ├── dac_2ch.yaml │ ├── dac_2ch_common.yaml │ ├── dac_e1.yaml │ └── dac_f2_f3.yaml ├── dbg │ ├── dbg.yaml │ ├── dbg_common.yaml │ ├── dbg_e1.yaml │ ├── dbg_f2_f3.yaml │ └── dbg_high.yaml ├── dma │ └── dma.yaml ├── exti │ └── exti.yaml ├── flash │ ├── flash.yaml │ ├── flash_e1.yaml │ ├── flash_ob.yaml │ └── flash_wsen.yaml ├── fwdgt │ ├── fwdgt.yaml │ ├── fwdgt_common.yaml │ ├── fwdgt_f2_f3.yaml │ └── wnd.yaml ├── gpio │ ├── gpio.yaml │ ├── gpio_e1.yaml │ └── gpio_f2_f3.yaml ├── i2c │ ├── i2c.yaml │ ├── i2c_common.yaml │ ├── i2c_e1.yaml │ └── i2c_high.yaml ├── ivref │ └── ivref.yaml ├── opa │ └── opa.yaml ├── pmu │ ├── pmu.yaml │ └── pmu_wupen1.yaml ├── rcu │ ├── rcu_common.yaml │ ├── rcu_e1.yaml │ ├── rcu_e2.yaml │ ├── rcu_f1.yaml │ ├── rcu_f1_e2.yaml │ ├── rcu_f2.yaml │ ├── rcu_high.yaml │ └── rcu_low.yaml ├── spi │ ├── spi.yaml │ ├── spi_e1.yaml │ └── spi_high.yaml ├── syscfg │ ├── syscfg.yaml │ ├── syscfg_hcce.yaml │ └── syscfg_slcd.yaml ├── timer │ ├── timer13.yaml │ ├── timer1_32bit.yaml │ ├── timer_13_16_comcen.yaml │ ├── timer_16bit.yaml │ ├── timer_16bit_f2.yaml │ ├── timer_advanced.yaml │ ├── timer_advanced_f2.yaml │ ├── timer_basic.yaml │ ├── timer_complementary.yaml │ ├── timer_complementary_f2.yaml │ ├── timer_dma.yaml │ ├── timer_dma_f2.yaml │ ├── timer_general.yaml │ ├── timer_interconnect.yaml │ ├── timer_interconnect_f2.yaml │ ├── timer_updown.yaml │ ├── timers.yaml │ ├── timers_e1.yaml │ ├── timers_e2.yaml │ ├── timers_e5.yaml │ ├── timers_f2.yaml │ └── timers_high.yaml ├── usart │ ├── usart.yaml │ ├── usart_common.yaml │ └── usart_f2_f3.yaml └── wwdg │ └── wwdg.yaml ├── requirements.txt ├── rustfmt.toml ├── scripts ├── comparesvd.py ├── group.py ├── htmlcomparesvd.py ├── htmlcomparesvdall.sh ├── interrupts.py ├── makecrates.py ├── makehtml.index.template.html ├── makehtml.py ├── makehtml.template.html ├── makejson.py ├── matchperipherals.py ├── periphtemplate.py ├── svd2rust_install.sh ├── svdmmap.py ├── timer_hierarchy.py └── viewgroups.html └── svd ├── .gitignore ├── README.md ├── cmsis-svd.xsd ├── extract.sh └── vendor ├── GD32C10x.svd ├── GD32C11x.svd ├── GD32E10x.svd ├── GD32E230.svd ├── GD32E231.svd ├── GD32E50x_CL.svd ├── GD32E50x_HD.svd ├── GD32F1x0.svd ├── GD32F30x_CL.svd ├── GD32F30x_XD.svd ├── GD32F4xx.svd ├── README.md └── gd32f207_svd.zip /.github/bors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/.github/bors.toml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/README-nightlies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/.github/workflows/README-nightlies.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/.github/workflows/gh-pages.yaml -------------------------------------------------------------------------------- /.github/workflows/mmaps_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/.github/workflows/mmaps_main.yaml -------------------------------------------------------------------------------- /.github/workflows/mmaps_pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/.github/workflows/mmaps_pr.yaml -------------------------------------------------------------------------------- /.github/workflows/nightlies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/.github/workflows/nightlies.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | printWidth: 100 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/README.md -------------------------------------------------------------------------------- /cortex_m/.gitignore: -------------------------------------------------------------------------------- 1 | *.patched 2 | -------------------------------------------------------------------------------- /cortex_m/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/Makefile -------------------------------------------------------------------------------- /cortex_m/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/README.md -------------------------------------------------------------------------------- /cortex_m/armv6m.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/armv6m.svd -------------------------------------------------------------------------------- /cortex_m/armv6m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/armv6m.yaml -------------------------------------------------------------------------------- /cortex_m/armv7em.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/armv7em.svd -------------------------------------------------------------------------------- /cortex_m/armv7em.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/armv7em.yaml -------------------------------------------------------------------------------- /cortex_m/armv7m.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/armv7m.svd -------------------------------------------------------------------------------- /cortex_m/armv7m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/armv7m.yaml -------------------------------------------------------------------------------- /cortex_m/armv8m.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/armv8m.svd -------------------------------------------------------------------------------- /cortex_m/armv8m.yaml: -------------------------------------------------------------------------------- 1 | _svd: armv8m.svd 2 | 3 | # No files included yet. 4 | -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/cpb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/cpb.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/cpuid_v6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/cpuid_v6.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/cpuid_v7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/cpuid_v7.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/dcb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/dcb.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/dwt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/dwt.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/fpb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/fpb.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/fpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/fpu.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/itm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/itm.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/mpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/mpu.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/nvic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/nvic.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/nvic_v6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/nvic_v6.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/nvic_v7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/nvic_v7.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/scb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/bak/scb.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/syst.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cortex_m/peripherals/bak/tpiu.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cortex_m/peripherals/cpb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/cpb.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/cpuid_v6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/cpuid_v6.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/cpuid_v7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/cpuid_v7.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/dcb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/dcb.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/dwt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/dwt.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/fpb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/fpb.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/fpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/fpu.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/itm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/itm.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/mpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/mpu.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/nvic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/nvic.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/nvic_v6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/nvic_v6.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/nvic_v7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/nvic_v7.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/scb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/scb.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/scb_v7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/scb_v7.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/syst.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/syst.yaml -------------------------------------------------------------------------------- /cortex_m/peripherals/tpiu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/cortex_m/peripherals/tpiu.yaml -------------------------------------------------------------------------------- /devices/common_patches/gd32e1xx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/common_patches/gd32e1xx.yaml -------------------------------------------------------------------------------- /devices/common_patches/gd32e23x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/common_patches/gd32e23x.yaml -------------------------------------------------------------------------------- /devices/common_patches/gd32e50x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/common_patches/gd32e50x.yaml -------------------------------------------------------------------------------- /devices/common_patches/gd32f130_150.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/common_patches/gd32f130_150.yaml -------------------------------------------------------------------------------- /devices/common_patches/gd32f170_190.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/common_patches/gd32f170_190.yaml -------------------------------------------------------------------------------- /devices/common_patches/gd32f1x0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/common_patches/gd32f1x0.yaml -------------------------------------------------------------------------------- /devices/common_patches/gd32f205_207.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/common_patches/gd32f205_207.yaml -------------------------------------------------------------------------------- /devices/common_patches/gd32f20x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/common_patches/gd32f20x.yaml -------------------------------------------------------------------------------- /devices/common_patches/gd32f30x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/common_patches/gd32f30x.yaml -------------------------------------------------------------------------------- /devices/common_patches/gd32f425.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/common_patches/gd32f425.yaml -------------------------------------------------------------------------------- /devices/gd32c103.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32c103.yaml -------------------------------------------------------------------------------- /devices/gd32c113.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32c113.yaml -------------------------------------------------------------------------------- /devices/gd32e103.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32e103.yaml -------------------------------------------------------------------------------- /devices/gd32e230.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32e230.yaml -------------------------------------------------------------------------------- /devices/gd32e231.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32e231.yaml -------------------------------------------------------------------------------- /devices/gd32e503.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32e503.yaml -------------------------------------------------------------------------------- /devices/gd32e505.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32e505.yaml -------------------------------------------------------------------------------- /devices/gd32e507.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32e507.yaml -------------------------------------------------------------------------------- /devices/gd32e508.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32e508.yaml -------------------------------------------------------------------------------- /devices/gd32f130.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32f130.yaml -------------------------------------------------------------------------------- /devices/gd32f150.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32f150.yaml -------------------------------------------------------------------------------- /devices/gd32f170.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32f170.yaml -------------------------------------------------------------------------------- /devices/gd32f190.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32f190.yaml -------------------------------------------------------------------------------- /devices/gd32f205.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32f205.yaml -------------------------------------------------------------------------------- /devices/gd32f207.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32f207.yaml -------------------------------------------------------------------------------- /devices/gd32f303.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32f303.yaml -------------------------------------------------------------------------------- /devices/gd32f305.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32f305.yaml -------------------------------------------------------------------------------- /devices/gd32f307.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32f307.yaml -------------------------------------------------------------------------------- /devices/gd32f425.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/devices/gd32f425.yaml -------------------------------------------------------------------------------- /gd32_part_table.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/gd32_part_table.yaml -------------------------------------------------------------------------------- /peripherals/adc/adc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/adc/adc.yaml -------------------------------------------------------------------------------- /peripherals/adc/adc_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/adc/adc_common.yaml -------------------------------------------------------------------------------- /peripherals/adc/adc_e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/adc/adc_e1.yaml -------------------------------------------------------------------------------- /peripherals/adc/adc_f2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/adc/adc_f2.yaml -------------------------------------------------------------------------------- /peripherals/adc/adc_f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/adc/adc_f3.yaml -------------------------------------------------------------------------------- /peripherals/adc/adc_high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/adc/adc_high.yaml -------------------------------------------------------------------------------- /peripherals/adc/adc_high_f2_f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/adc/adc_high_f2_f3.yaml -------------------------------------------------------------------------------- /peripherals/adc/adc_vbat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/adc/adc_vbat.yaml -------------------------------------------------------------------------------- /peripherals/adc/eteic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/adc/eteic.yaml -------------------------------------------------------------------------------- /peripherals/adc/swrcst.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/adc/swrcst.yaml -------------------------------------------------------------------------------- /peripherals/can/can.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/can/can.yaml -------------------------------------------------------------------------------- /peripherals/can/can_c1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/can/can_c1.yaml -------------------------------------------------------------------------------- /peripherals/can/can_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/can/can_common.yaml -------------------------------------------------------------------------------- /peripherals/can/can_f2_f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/can/can_f2_f3.yaml -------------------------------------------------------------------------------- /peripherals/can/phyctl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/can/phyctl.yaml -------------------------------------------------------------------------------- /peripherals/cmp/cmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/cmp/cmp.yaml -------------------------------------------------------------------------------- /peripherals/cmp/cmp_wnd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/cmp/cmp_wnd.yaml -------------------------------------------------------------------------------- /peripherals/crc/crc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/crc/crc.yaml -------------------------------------------------------------------------------- /peripherals/crc/rev_idata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/crc/rev_idata.yaml -------------------------------------------------------------------------------- /peripherals/dac/dac_1ch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/dac/dac_1ch.yaml -------------------------------------------------------------------------------- /peripherals/dac/dac_2ch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/dac/dac_2ch.yaml -------------------------------------------------------------------------------- /peripherals/dac/dac_2ch_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/dac/dac_2ch_common.yaml -------------------------------------------------------------------------------- /peripherals/dac/dac_e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/dac/dac_e1.yaml -------------------------------------------------------------------------------- /peripherals/dac/dac_f2_f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/dac/dac_f2_f3.yaml -------------------------------------------------------------------------------- /peripherals/dbg/dbg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/dbg/dbg.yaml -------------------------------------------------------------------------------- /peripherals/dbg/dbg_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/dbg/dbg_common.yaml -------------------------------------------------------------------------------- /peripherals/dbg/dbg_e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/dbg/dbg_e1.yaml -------------------------------------------------------------------------------- /peripherals/dbg/dbg_f2_f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/dbg/dbg_f2_f3.yaml -------------------------------------------------------------------------------- /peripherals/dbg/dbg_high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/dbg/dbg_high.yaml -------------------------------------------------------------------------------- /peripherals/dma/dma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/dma/dma.yaml -------------------------------------------------------------------------------- /peripherals/exti/exti.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/exti/exti.yaml -------------------------------------------------------------------------------- /peripherals/flash/flash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/flash/flash.yaml -------------------------------------------------------------------------------- /peripherals/flash/flash_e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/flash/flash_e1.yaml -------------------------------------------------------------------------------- /peripherals/flash/flash_ob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/flash/flash_ob.yaml -------------------------------------------------------------------------------- /peripherals/flash/flash_wsen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/flash/flash_wsen.yaml -------------------------------------------------------------------------------- /peripherals/fwdgt/fwdgt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/fwdgt/fwdgt.yaml -------------------------------------------------------------------------------- /peripherals/fwdgt/fwdgt_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/fwdgt/fwdgt_common.yaml -------------------------------------------------------------------------------- /peripherals/fwdgt/fwdgt_f2_f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/fwdgt/fwdgt_f2_f3.yaml -------------------------------------------------------------------------------- /peripherals/fwdgt/wnd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/fwdgt/wnd.yaml -------------------------------------------------------------------------------- /peripherals/gpio/gpio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/gpio/gpio.yaml -------------------------------------------------------------------------------- /peripherals/gpio/gpio_e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/gpio/gpio_e1.yaml -------------------------------------------------------------------------------- /peripherals/gpio/gpio_f2_f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/gpio/gpio_f2_f3.yaml -------------------------------------------------------------------------------- /peripherals/i2c/i2c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/i2c/i2c.yaml -------------------------------------------------------------------------------- /peripherals/i2c/i2c_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/i2c/i2c_common.yaml -------------------------------------------------------------------------------- /peripherals/i2c/i2c_e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/i2c/i2c_e1.yaml -------------------------------------------------------------------------------- /peripherals/i2c/i2c_high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/i2c/i2c_high.yaml -------------------------------------------------------------------------------- /peripherals/ivref/ivref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/ivref/ivref.yaml -------------------------------------------------------------------------------- /peripherals/opa/opa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/opa/opa.yaml -------------------------------------------------------------------------------- /peripherals/pmu/pmu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/pmu/pmu.yaml -------------------------------------------------------------------------------- /peripherals/pmu/pmu_wupen1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/pmu/pmu_wupen1.yaml -------------------------------------------------------------------------------- /peripherals/rcu/rcu_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/rcu/rcu_common.yaml -------------------------------------------------------------------------------- /peripherals/rcu/rcu_e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/rcu/rcu_e1.yaml -------------------------------------------------------------------------------- /peripherals/rcu/rcu_e2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/rcu/rcu_e2.yaml -------------------------------------------------------------------------------- /peripherals/rcu/rcu_f1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/rcu/rcu_f1.yaml -------------------------------------------------------------------------------- /peripherals/rcu/rcu_f1_e2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/rcu/rcu_f1_e2.yaml -------------------------------------------------------------------------------- /peripherals/rcu/rcu_f2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/rcu/rcu_f2.yaml -------------------------------------------------------------------------------- /peripherals/rcu/rcu_high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/rcu/rcu_high.yaml -------------------------------------------------------------------------------- /peripherals/rcu/rcu_low.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/rcu/rcu_low.yaml -------------------------------------------------------------------------------- /peripherals/spi/spi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/spi/spi.yaml -------------------------------------------------------------------------------- /peripherals/spi/spi_e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/spi/spi_e1.yaml -------------------------------------------------------------------------------- /peripherals/spi/spi_high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/spi/spi_high.yaml -------------------------------------------------------------------------------- /peripherals/syscfg/syscfg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/syscfg/syscfg.yaml -------------------------------------------------------------------------------- /peripherals/syscfg/syscfg_hcce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/syscfg/syscfg_hcce.yaml -------------------------------------------------------------------------------- /peripherals/syscfg/syscfg_slcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/syscfg/syscfg_slcd.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer13.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer1_32bit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer1_32bit.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_13_16_comcen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_13_16_comcen.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_16bit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_16bit.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_16bit_f2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_16bit_f2.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_advanced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_advanced.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_advanced_f2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_advanced_f2.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_basic.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_complementary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_complementary.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_complementary_f2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_complementary_f2.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_dma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_dma.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_dma_f2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_dma_f2.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_general.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_general.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_interconnect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_interconnect.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_interconnect_f2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_interconnect_f2.yaml -------------------------------------------------------------------------------- /peripherals/timer/timer_updown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timer_updown.yaml -------------------------------------------------------------------------------- /peripherals/timer/timers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timers.yaml -------------------------------------------------------------------------------- /peripherals/timer/timers_e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timers_e1.yaml -------------------------------------------------------------------------------- /peripherals/timer/timers_e2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timers_e2.yaml -------------------------------------------------------------------------------- /peripherals/timer/timers_e5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timers_e5.yaml -------------------------------------------------------------------------------- /peripherals/timer/timers_f2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timers_f2.yaml -------------------------------------------------------------------------------- /peripherals/timer/timers_high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/timer/timers_high.yaml -------------------------------------------------------------------------------- /peripherals/usart/usart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/usart/usart.yaml -------------------------------------------------------------------------------- /peripherals/usart/usart_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/usart/usart_common.yaml -------------------------------------------------------------------------------- /peripherals/usart/usart_f2_f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/usart/usart_f2_f3.yaml -------------------------------------------------------------------------------- /peripherals/wwdg/wwdg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/peripherals/wwdg/wwdg.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | svdtools~=0.1.0 2 | -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | normalize_doc_attributes = true 2 | -------------------------------------------------------------------------------- /scripts/comparesvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/comparesvd.py -------------------------------------------------------------------------------- /scripts/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/group.py -------------------------------------------------------------------------------- /scripts/htmlcomparesvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/htmlcomparesvd.py -------------------------------------------------------------------------------- /scripts/htmlcomparesvdall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/htmlcomparesvdall.sh -------------------------------------------------------------------------------- /scripts/interrupts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/interrupts.py -------------------------------------------------------------------------------- /scripts/makecrates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/makecrates.py -------------------------------------------------------------------------------- /scripts/makehtml.index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/makehtml.index.template.html -------------------------------------------------------------------------------- /scripts/makehtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/makehtml.py -------------------------------------------------------------------------------- /scripts/makehtml.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/makehtml.template.html -------------------------------------------------------------------------------- /scripts/makejson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/makejson.py -------------------------------------------------------------------------------- /scripts/matchperipherals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/matchperipherals.py -------------------------------------------------------------------------------- /scripts/periphtemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/periphtemplate.py -------------------------------------------------------------------------------- /scripts/svd2rust_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/svd2rust_install.sh -------------------------------------------------------------------------------- /scripts/svdmmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/svdmmap.py -------------------------------------------------------------------------------- /scripts/timer_hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/timer_hierarchy.py -------------------------------------------------------------------------------- /scripts/viewgroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/scripts/viewgroups.html -------------------------------------------------------------------------------- /svd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/.gitignore -------------------------------------------------------------------------------- /svd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/README.md -------------------------------------------------------------------------------- /svd/cmsis-svd.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/cmsis-svd.xsd -------------------------------------------------------------------------------- /svd/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/extract.sh -------------------------------------------------------------------------------- /svd/vendor/GD32C10x.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/GD32C10x.svd -------------------------------------------------------------------------------- /svd/vendor/GD32C11x.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/GD32C11x.svd -------------------------------------------------------------------------------- /svd/vendor/GD32E10x.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/GD32E10x.svd -------------------------------------------------------------------------------- /svd/vendor/GD32E230.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/GD32E230.svd -------------------------------------------------------------------------------- /svd/vendor/GD32E231.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/GD32E231.svd -------------------------------------------------------------------------------- /svd/vendor/GD32E50x_CL.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/GD32E50x_CL.svd -------------------------------------------------------------------------------- /svd/vendor/GD32E50x_HD.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/GD32E50x_HD.svd -------------------------------------------------------------------------------- /svd/vendor/GD32F1x0.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/GD32F1x0.svd -------------------------------------------------------------------------------- /svd/vendor/GD32F30x_CL.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/GD32F30x_CL.svd -------------------------------------------------------------------------------- /svd/vendor/GD32F30x_XD.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/GD32F30x_XD.svd -------------------------------------------------------------------------------- /svd/vendor/GD32F4xx.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/GD32F4xx.svd -------------------------------------------------------------------------------- /svd/vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/README.md -------------------------------------------------------------------------------- /svd/vendor/gd32f207_svd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gd32-rust/gd32-rs/HEAD/svd/vendor/gd32f207_svd.zip --------------------------------------------------------------------------------