├── .gitignore ├── LICENSE ├── README.md ├── adc_serial ├── Makefile ├── README.md ├── adc.c ├── adc.lds ├── adc_main.c ├── gpio.c ├── locore.s ├── mkvec ├── nvic.c ├── ocd ├── prf.c ├── rcc.c ├── serial.c └── timer.c ├── blink1 ├── Makefile ├── README.md ├── blink.c ├── blink.lds ├── locore.s └── ocd ├── blink1b ├── Makefile ├── README.md ├── blink.c ├── blink.lds ├── locore.s └── ocd ├── blink2 ├── Makefile ├── README.md ├── blink.c ├── blink.lds ├── gpio.c ├── locore.s ├── ocd └── rcc.c ├── blink_ext ├── Makefile ├── README.md ├── blink.c ├── blink.lds ├── gpio.c ├── locore.s ├── ocd └── rcc.c ├── blink_maple ├── Makefile ├── README.md ├── blink.c ├── blink.lds ├── gpio.c ├── locore.s ├── ocd └── rcc.c ├── i2c_maple ├── Makefile ├── README.md ├── dac.c ├── dac.lds ├── get_files ├── glue.c ├── gpio.c ├── libmaple │ ├── adc.h │ ├── bitband.h │ ├── bkp.h │ ├── dac.h │ ├── delay.h │ ├── dma.h │ ├── dma_common.h │ ├── exti.h │ ├── flash.h │ ├── fsmc.h │ ├── gpio.h │ ├── i2c.h │ ├── i2c_common.h │ ├── iwdg.h │ ├── libmaple.h │ ├── libmaple_types.h │ ├── nvic.h │ ├── pwr.h │ ├── rcc.h │ ├── ring_buffer.h │ ├── scb.h │ ├── series │ │ ├── adc.h │ │ ├── dac.h │ │ ├── dma.h │ │ ├── exti.h │ │ ├── flash.h │ │ ├── gpio.h │ │ ├── i2c.h │ │ ├── nvic.h │ │ ├── pwr.h │ │ ├── rcc.h │ │ ├── spi.h │ │ ├── stm32.h │ │ ├── timer.h │ │ └── usart.h │ ├── spi.h │ ├── stm32.h │ ├── syscfg.h │ ├── systick.h │ ├── timer.h │ ├── usart.h │ ├── usb.h │ ├── usb_cdcacm.h │ └── util.h ├── locore.s ├── main.cpp ├── maple_OLD │ ├── maple_exti.h │ ├── maple_gpio.h │ ├── maple_i2c.h │ ├── maple_i2c_common.h │ ├── maple_nvic.h │ ├── maple_rcc.h │ ├── maple_stm32.h │ ├── maple_stm32f103_exti.h │ ├── maple_stm32f103_gpio.h │ ├── maple_stm32f103_i2c.h │ ├── maple_stm32f103_nvic.h │ ├── maple_stm32f103_rcc.h │ └── maple_types.h ├── maple_i2c.c ├── maple_i2c_private.h ├── maple_stm32f103_i2c.c ├── mkvec ├── nvic.c ├── ocd ├── rcc.c ├── serial.c ├── startup.c ├── timer.c └── tom_i2c.c ├── interrupt ├── .gitignore ├── Makefile ├── README.md ├── gpio.c ├── inter.c ├── inter.lds ├── locore.s ├── mkvec ├── nvic.c ├── ocd ├── rcc.c ├── serial.c └── timer.c ├── lcd ├── .gitignore ├── Makefile ├── README.md ├── afio.c ├── gpio.c ├── i2c.c ├── lcd.c ├── lcd.lds ├── locore.s ├── mkvec ├── nvic.c ├── ocd ├── rcc.c ├── serial.c └── timer.c ├── lithium1 ├── .gitignore ├── Makefile ├── README.md ├── adc.c ├── gpio.c ├── lithium.c ├── lithium.lds ├── lithium.rb ├── locore.s ├── mah.rb ├── mkvec ├── nvic.c ├── ocd ├── plotit ├── prf.c ├── rcc.c ├── serial.c └── timer.c ├── loader ├── Makefile ├── README.md └── loader.c ├── memory ├── Makefile ├── README.md ├── gpio.c ├── locore.s ├── mem.c ├── mem.lds ├── ocd ├── rcc.c ├── serial.c ├── startup.c └── timer.c ├── serial1 ├── .gitignore ├── Makefile ├── README.md ├── gpio.c ├── locore.s ├── ocd ├── rcc.c ├── serial.c ├── talk.c ├── talk.lds └── timer.c ├── serial_boot ├── .gitignore ├── Makefile ├── README.md ├── boot.txt ├── longs ├── ocd ├── odx ├── reloc └── wrap.c ├── usb ├── .gitignore ├── Makefile ├── README.md ├── dragoon.lds ├── gpio.c ├── kyulib.c ├── kyulib.h ├── locore.s ├── main.c ├── mkvec ├── nvic.c ├── ocd ├── prf.c ├── protos.h ├── rcc.c ├── serial.c ├── startup.c ├── timer.c ├── usb.c ├── usb.h ├── usb_enum.c └── usb_watch.c ├── usb1 ├── .gitignore ├── Makefile ├── README.md ├── gpio.c ├── locore.s ├── mkvec ├── nvic.c ├── ocd ├── prf.c ├── rcc.c ├── serial.c ├── timer.c ├── usb.c ├── usb1.lds └── usb1_main.c ├── usb_baboon ├── .gitignore ├── Makefile ├── README.md ├── baboon.lds ├── gpio.c ├── kyulib.c ├── kyulib.h ├── locore.s ├── main.c ├── mkvec ├── nvic.c ├── ocd ├── papoon │ ├── Makefile │ ├── example.cxx │ ├── papoon.h │ ├── regbits.h │ ├── stm32f103xb.h │ ├── stm32f103xb_tim.h │ ├── usb_dev.cxx │ ├── usb_dev.h │ ├── usb_dev_cdc_acm.cxx │ └── usb_dev_cdc_acm.h ├── prf.c ├── protos.h ├── rcc.c ├── serial.c ├── startup.c ├── timer.c ├── usb.c ├── usb.h ├── usb_enum.c └── usb_watch.c ├── usb_papoon ├── .gitignore ├── Makefile ├── README.md ├── gpio.c ├── locore.s ├── main.c ├── mkvec ├── nvic.c ├── ocd ├── papoon.lds ├── papoon │ ├── Makefile │ ├── bin_to_hex.hxx │ ├── core_cm3.hxx │ ├── example.cxx │ ├── papoon.hxx │ ├── regbits.hxx │ ├── stm32f103xb.hxx │ ├── stm32f103xb_tim.hxx │ ├── usb_dev.cxx │ ├── usb_dev.hxx │ ├── usb_dev_cdc_acm.cxx │ ├── usb_dev_cdc_acm.hxx │ ├── usb_mcu_init.cxx │ └── usb_mcu_init.hxx ├── prf.c ├── rcc.c ├── serial.c ├── startup.c └── timer.c └── usb_papoon2 ├── .gitignore ├── Makefile ├── README.md ├── gpio.c ├── locore.s ├── main.c ├── mkvec ├── nvic.c ├── ocd ├── papoon.lds ├── papoon ├── Makefile ├── example.cxx ├── papoon.h ├── regbits.h ├── stm32f103xb.h ├── stm32f103xb_tim.h ├── usb_dev.cxx ├── usb_dev.h ├── usb_dev_cdc_acm.cxx ├── usb_dev_cdc_acm.h ├── usb_mcu_init.cxx └── usb_mcu_init.h ├── prf.c ├── rcc.c ├── serial.c ├── startup.c ├── timer.c └── usb.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/README.md -------------------------------------------------------------------------------- /adc_serial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/Makefile -------------------------------------------------------------------------------- /adc_serial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/README.md -------------------------------------------------------------------------------- /adc_serial/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/adc.c -------------------------------------------------------------------------------- /adc_serial/adc.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/adc.lds -------------------------------------------------------------------------------- /adc_serial/adc_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/adc_main.c -------------------------------------------------------------------------------- /adc_serial/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/gpio.c -------------------------------------------------------------------------------- /adc_serial/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/locore.s -------------------------------------------------------------------------------- /adc_serial/mkvec: -------------------------------------------------------------------------------- 1 | #!/bin/ruby 2 | 3 | (0..67).each { |v| 4 | print ".word\tbogus\t\t/* IRQ %2d */\n" % v 5 | } 6 | -------------------------------------------------------------------------------- /adc_serial/nvic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/nvic.c -------------------------------------------------------------------------------- /adc_serial/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/ocd -------------------------------------------------------------------------------- /adc_serial/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/prf.c -------------------------------------------------------------------------------- /adc_serial/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/rcc.c -------------------------------------------------------------------------------- /adc_serial/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/serial.c -------------------------------------------------------------------------------- /adc_serial/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/adc_serial/timer.c -------------------------------------------------------------------------------- /blink1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink1/Makefile -------------------------------------------------------------------------------- /blink1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink1/README.md -------------------------------------------------------------------------------- /blink1/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink1/blink.c -------------------------------------------------------------------------------- /blink1/blink.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink1/blink.lds -------------------------------------------------------------------------------- /blink1/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink1/locore.s -------------------------------------------------------------------------------- /blink1/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink1/ocd -------------------------------------------------------------------------------- /blink1b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink1b/Makefile -------------------------------------------------------------------------------- /blink1b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink1b/README.md -------------------------------------------------------------------------------- /blink1b/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink1b/blink.c -------------------------------------------------------------------------------- /blink1b/blink.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink1b/blink.lds -------------------------------------------------------------------------------- /blink1b/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink1b/locore.s -------------------------------------------------------------------------------- /blink1b/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink1b/ocd -------------------------------------------------------------------------------- /blink2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink2/Makefile -------------------------------------------------------------------------------- /blink2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink2/README.md -------------------------------------------------------------------------------- /blink2/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink2/blink.c -------------------------------------------------------------------------------- /blink2/blink.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink2/blink.lds -------------------------------------------------------------------------------- /blink2/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink2/gpio.c -------------------------------------------------------------------------------- /blink2/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink2/locore.s -------------------------------------------------------------------------------- /blink2/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink2/ocd -------------------------------------------------------------------------------- /blink2/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink2/rcc.c -------------------------------------------------------------------------------- /blink_ext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_ext/Makefile -------------------------------------------------------------------------------- /blink_ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_ext/README.md -------------------------------------------------------------------------------- /blink_ext/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_ext/blink.c -------------------------------------------------------------------------------- /blink_ext/blink.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_ext/blink.lds -------------------------------------------------------------------------------- /blink_ext/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_ext/gpio.c -------------------------------------------------------------------------------- /blink_ext/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_ext/locore.s -------------------------------------------------------------------------------- /blink_ext/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_ext/ocd -------------------------------------------------------------------------------- /blink_ext/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_ext/rcc.c -------------------------------------------------------------------------------- /blink_maple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_maple/Makefile -------------------------------------------------------------------------------- /blink_maple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_maple/README.md -------------------------------------------------------------------------------- /blink_maple/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_maple/blink.c -------------------------------------------------------------------------------- /blink_maple/blink.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_maple/blink.lds -------------------------------------------------------------------------------- /blink_maple/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_maple/gpio.c -------------------------------------------------------------------------------- /blink_maple/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_maple/locore.s -------------------------------------------------------------------------------- /blink_maple/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_maple/ocd -------------------------------------------------------------------------------- /blink_maple/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/blink_maple/rcc.c -------------------------------------------------------------------------------- /i2c_maple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/Makefile -------------------------------------------------------------------------------- /i2c_maple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/README.md -------------------------------------------------------------------------------- /i2c_maple/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/dac.c -------------------------------------------------------------------------------- /i2c_maple/dac.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/dac.lds -------------------------------------------------------------------------------- /i2c_maple/get_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/get_files -------------------------------------------------------------------------------- /i2c_maple/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/glue.c -------------------------------------------------------------------------------- /i2c_maple/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/gpio.c -------------------------------------------------------------------------------- /i2c_maple/libmaple/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/adc.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/bitband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/bitband.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/bkp.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/dac.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/delay.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/dma.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/dma_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/dma_common.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/exti.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/flash.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/fsmc.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/gpio.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/i2c.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/i2c_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/i2c_common.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/iwdg.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/libmaple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/libmaple.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/libmaple_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/libmaple_types.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/nvic.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/pwr.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/rcc.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/ring_buffer.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/scb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/scb.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/adc.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/dac.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/dma.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/exti.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/flash.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/gpio.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/i2c.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/nvic.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/pwr.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/rcc.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/spi.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/stm32.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/timer.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/series/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/series/usart.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/spi.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/stm32.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/syscfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/syscfg.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/systick.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/timer.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/usart.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/usb.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/usb_cdcacm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/usb_cdcacm.h -------------------------------------------------------------------------------- /i2c_maple/libmaple/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/libmaple/util.h -------------------------------------------------------------------------------- /i2c_maple/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/locore.s -------------------------------------------------------------------------------- /i2c_maple/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/main.cpp -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_exti.h -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_gpio.h -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_i2c.h -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_i2c_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_i2c_common.h -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_nvic.h -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_rcc.h -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_stm32.h -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_stm32f103_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_stm32f103_exti.h -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_stm32f103_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_stm32f103_gpio.h -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_stm32f103_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_stm32f103_i2c.h -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_stm32f103_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_stm32f103_nvic.h -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_stm32f103_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_stm32f103_rcc.h -------------------------------------------------------------------------------- /i2c_maple/maple_OLD/maple_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_OLD/maple_types.h -------------------------------------------------------------------------------- /i2c_maple/maple_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_i2c.c -------------------------------------------------------------------------------- /i2c_maple/maple_i2c_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_i2c_private.h -------------------------------------------------------------------------------- /i2c_maple/maple_stm32f103_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/maple_stm32f103_i2c.c -------------------------------------------------------------------------------- /i2c_maple/mkvec: -------------------------------------------------------------------------------- 1 | #!/bin/ruby 2 | 3 | (0..67).each { |v| 4 | print ".word\tbogus\t\t/* IRQ %2d */\n" % v 5 | } 6 | -------------------------------------------------------------------------------- /i2c_maple/nvic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/nvic.c -------------------------------------------------------------------------------- /i2c_maple/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/ocd -------------------------------------------------------------------------------- /i2c_maple/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/rcc.c -------------------------------------------------------------------------------- /i2c_maple/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/serial.c -------------------------------------------------------------------------------- /i2c_maple/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/startup.c -------------------------------------------------------------------------------- /i2c_maple/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/timer.c -------------------------------------------------------------------------------- /i2c_maple/tom_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/i2c_maple/tom_i2c.c -------------------------------------------------------------------------------- /interrupt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/interrupt/.gitignore -------------------------------------------------------------------------------- /interrupt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/interrupt/Makefile -------------------------------------------------------------------------------- /interrupt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/interrupt/README.md -------------------------------------------------------------------------------- /interrupt/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/interrupt/gpio.c -------------------------------------------------------------------------------- /interrupt/inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/interrupt/inter.c -------------------------------------------------------------------------------- /interrupt/inter.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/interrupt/inter.lds -------------------------------------------------------------------------------- /interrupt/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/interrupt/locore.s -------------------------------------------------------------------------------- /interrupt/mkvec: -------------------------------------------------------------------------------- 1 | #!/bin/ruby 2 | 3 | (0..67).each { |v| 4 | print ".word\tbogus\t\t/* IRQ %2d */\n" % v 5 | } 6 | -------------------------------------------------------------------------------- /interrupt/nvic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/interrupt/nvic.c -------------------------------------------------------------------------------- /interrupt/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/interrupt/ocd -------------------------------------------------------------------------------- /interrupt/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/interrupt/rcc.c -------------------------------------------------------------------------------- /interrupt/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/interrupt/serial.c -------------------------------------------------------------------------------- /interrupt/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/interrupt/timer.c -------------------------------------------------------------------------------- /lcd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/.gitignore -------------------------------------------------------------------------------- /lcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/Makefile -------------------------------------------------------------------------------- /lcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/README.md -------------------------------------------------------------------------------- /lcd/afio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/afio.c -------------------------------------------------------------------------------- /lcd/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/gpio.c -------------------------------------------------------------------------------- /lcd/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/i2c.c -------------------------------------------------------------------------------- /lcd/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/lcd.c -------------------------------------------------------------------------------- /lcd/lcd.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/lcd.lds -------------------------------------------------------------------------------- /lcd/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/locore.s -------------------------------------------------------------------------------- /lcd/mkvec: -------------------------------------------------------------------------------- 1 | #!/bin/ruby 2 | 3 | (0..67).each { |v| 4 | print ".word\tbogus\t\t/* IRQ %2d */\n" % v 5 | } 6 | -------------------------------------------------------------------------------- /lcd/nvic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/nvic.c -------------------------------------------------------------------------------- /lcd/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/ocd -------------------------------------------------------------------------------- /lcd/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/rcc.c -------------------------------------------------------------------------------- /lcd/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/serial.c -------------------------------------------------------------------------------- /lcd/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lcd/timer.c -------------------------------------------------------------------------------- /lithium1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/.gitignore -------------------------------------------------------------------------------- /lithium1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/Makefile -------------------------------------------------------------------------------- /lithium1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/README.md -------------------------------------------------------------------------------- /lithium1/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/adc.c -------------------------------------------------------------------------------- /lithium1/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/gpio.c -------------------------------------------------------------------------------- /lithium1/lithium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/lithium.c -------------------------------------------------------------------------------- /lithium1/lithium.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/lithium.lds -------------------------------------------------------------------------------- /lithium1/lithium.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/lithium.rb -------------------------------------------------------------------------------- /lithium1/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/locore.s -------------------------------------------------------------------------------- /lithium1/mah.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/mah.rb -------------------------------------------------------------------------------- /lithium1/mkvec: -------------------------------------------------------------------------------- 1 | #!/bin/ruby 2 | 3 | (0..67).each { |v| 4 | print ".word\tbogus\t\t/* IRQ %2d */\n" % v 5 | } 6 | -------------------------------------------------------------------------------- /lithium1/nvic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/nvic.c -------------------------------------------------------------------------------- /lithium1/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/ocd -------------------------------------------------------------------------------- /lithium1/plotit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/plotit -------------------------------------------------------------------------------- /lithium1/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/prf.c -------------------------------------------------------------------------------- /lithium1/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/rcc.c -------------------------------------------------------------------------------- /lithium1/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/serial.c -------------------------------------------------------------------------------- /lithium1/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/lithium1/timer.c -------------------------------------------------------------------------------- /loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/loader/Makefile -------------------------------------------------------------------------------- /loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/loader/README.md -------------------------------------------------------------------------------- /loader/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/loader/loader.c -------------------------------------------------------------------------------- /memory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/memory/Makefile -------------------------------------------------------------------------------- /memory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/memory/README.md -------------------------------------------------------------------------------- /memory/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/memory/gpio.c -------------------------------------------------------------------------------- /memory/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/memory/locore.s -------------------------------------------------------------------------------- /memory/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/memory/mem.c -------------------------------------------------------------------------------- /memory/mem.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/memory/mem.lds -------------------------------------------------------------------------------- /memory/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/memory/ocd -------------------------------------------------------------------------------- /memory/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/memory/rcc.c -------------------------------------------------------------------------------- /memory/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/memory/serial.c -------------------------------------------------------------------------------- /memory/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/memory/startup.c -------------------------------------------------------------------------------- /memory/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/memory/timer.c -------------------------------------------------------------------------------- /serial1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial1/.gitignore -------------------------------------------------------------------------------- /serial1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial1/Makefile -------------------------------------------------------------------------------- /serial1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial1/README.md -------------------------------------------------------------------------------- /serial1/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial1/gpio.c -------------------------------------------------------------------------------- /serial1/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial1/locore.s -------------------------------------------------------------------------------- /serial1/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial1/ocd -------------------------------------------------------------------------------- /serial1/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial1/rcc.c -------------------------------------------------------------------------------- /serial1/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial1/serial.c -------------------------------------------------------------------------------- /serial1/talk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial1/talk.c -------------------------------------------------------------------------------- /serial1/talk.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial1/talk.lds -------------------------------------------------------------------------------- /serial1/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial1/timer.c -------------------------------------------------------------------------------- /serial_boot/.gitignore: -------------------------------------------------------------------------------- 1 | *.dis 2 | *.elf 3 | *.out 4 | -------------------------------------------------------------------------------- /serial_boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial_boot/Makefile -------------------------------------------------------------------------------- /serial_boot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial_boot/README.md -------------------------------------------------------------------------------- /serial_boot/boot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial_boot/boot.txt -------------------------------------------------------------------------------- /serial_boot/longs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial_boot/longs -------------------------------------------------------------------------------- /serial_boot/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial_boot/ocd -------------------------------------------------------------------------------- /serial_boot/odx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial_boot/odx -------------------------------------------------------------------------------- /serial_boot/reloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial_boot/reloc -------------------------------------------------------------------------------- /serial_boot/wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/serial_boot/wrap.c -------------------------------------------------------------------------------- /usb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/.gitignore -------------------------------------------------------------------------------- /usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/Makefile -------------------------------------------------------------------------------- /usb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/README.md -------------------------------------------------------------------------------- /usb/dragoon.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/dragoon.lds -------------------------------------------------------------------------------- /usb/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/gpio.c -------------------------------------------------------------------------------- /usb/kyulib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/kyulib.c -------------------------------------------------------------------------------- /usb/kyulib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/kyulib.h -------------------------------------------------------------------------------- /usb/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/locore.s -------------------------------------------------------------------------------- /usb/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/main.c -------------------------------------------------------------------------------- /usb/mkvec: -------------------------------------------------------------------------------- 1 | #!/bin/ruby 2 | 3 | (0..67).each { |v| 4 | print ".word\tbogus\t\t/* IRQ %2d */\n" % v 5 | } 6 | -------------------------------------------------------------------------------- /usb/nvic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/nvic.c -------------------------------------------------------------------------------- /usb/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/ocd -------------------------------------------------------------------------------- /usb/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/prf.c -------------------------------------------------------------------------------- /usb/protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/protos.h -------------------------------------------------------------------------------- /usb/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/rcc.c -------------------------------------------------------------------------------- /usb/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/serial.c -------------------------------------------------------------------------------- /usb/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/startup.c -------------------------------------------------------------------------------- /usb/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/timer.c -------------------------------------------------------------------------------- /usb/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/usb.c -------------------------------------------------------------------------------- /usb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/usb.h -------------------------------------------------------------------------------- /usb/usb_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/usb_enum.c -------------------------------------------------------------------------------- /usb/usb_watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb/usb_watch.c -------------------------------------------------------------------------------- /usb1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/.gitignore -------------------------------------------------------------------------------- /usb1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/Makefile -------------------------------------------------------------------------------- /usb1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/README.md -------------------------------------------------------------------------------- /usb1/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/gpio.c -------------------------------------------------------------------------------- /usb1/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/locore.s -------------------------------------------------------------------------------- /usb1/mkvec: -------------------------------------------------------------------------------- 1 | #!/bin/ruby 2 | 3 | (0..67).each { |v| 4 | print ".word\tbogus\t\t/* IRQ %2d */\n" % v 5 | } 6 | -------------------------------------------------------------------------------- /usb1/nvic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/nvic.c -------------------------------------------------------------------------------- /usb1/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/ocd -------------------------------------------------------------------------------- /usb1/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/prf.c -------------------------------------------------------------------------------- /usb1/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/rcc.c -------------------------------------------------------------------------------- /usb1/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/serial.c -------------------------------------------------------------------------------- /usb1/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/timer.c -------------------------------------------------------------------------------- /usb1/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/usb.c -------------------------------------------------------------------------------- /usb1/usb1.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/usb1.lds -------------------------------------------------------------------------------- /usb1/usb1_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb1/usb1_main.c -------------------------------------------------------------------------------- /usb_baboon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/.gitignore -------------------------------------------------------------------------------- /usb_baboon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/Makefile -------------------------------------------------------------------------------- /usb_baboon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/README.md -------------------------------------------------------------------------------- /usb_baboon/baboon.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/baboon.lds -------------------------------------------------------------------------------- /usb_baboon/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/gpio.c -------------------------------------------------------------------------------- /usb_baboon/kyulib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/kyulib.c -------------------------------------------------------------------------------- /usb_baboon/kyulib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/kyulib.h -------------------------------------------------------------------------------- /usb_baboon/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/locore.s -------------------------------------------------------------------------------- /usb_baboon/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/main.c -------------------------------------------------------------------------------- /usb_baboon/mkvec: -------------------------------------------------------------------------------- 1 | #!/bin/ruby 2 | 3 | (0..67).each { |v| 4 | print ".word\tbogus\t\t/* IRQ %2d */\n" % v 5 | } 6 | -------------------------------------------------------------------------------- /usb_baboon/nvic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/nvic.c -------------------------------------------------------------------------------- /usb_baboon/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/ocd -------------------------------------------------------------------------------- /usb_baboon/papoon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/papoon/Makefile -------------------------------------------------------------------------------- /usb_baboon/papoon/example.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/papoon/example.cxx -------------------------------------------------------------------------------- /usb_baboon/papoon/papoon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/papoon/papoon.h -------------------------------------------------------------------------------- /usb_baboon/papoon/regbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/papoon/regbits.h -------------------------------------------------------------------------------- /usb_baboon/papoon/stm32f103xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/papoon/stm32f103xb.h -------------------------------------------------------------------------------- /usb_baboon/papoon/stm32f103xb_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/papoon/stm32f103xb_tim.h -------------------------------------------------------------------------------- /usb_baboon/papoon/usb_dev.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/papoon/usb_dev.cxx -------------------------------------------------------------------------------- /usb_baboon/papoon/usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/papoon/usb_dev.h -------------------------------------------------------------------------------- /usb_baboon/papoon/usb_dev_cdc_acm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/papoon/usb_dev_cdc_acm.cxx -------------------------------------------------------------------------------- /usb_baboon/papoon/usb_dev_cdc_acm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/papoon/usb_dev_cdc_acm.h -------------------------------------------------------------------------------- /usb_baboon/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/prf.c -------------------------------------------------------------------------------- /usb_baboon/protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/protos.h -------------------------------------------------------------------------------- /usb_baboon/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/rcc.c -------------------------------------------------------------------------------- /usb_baboon/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/serial.c -------------------------------------------------------------------------------- /usb_baboon/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/startup.c -------------------------------------------------------------------------------- /usb_baboon/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/timer.c -------------------------------------------------------------------------------- /usb_baboon/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/usb.c -------------------------------------------------------------------------------- /usb_baboon/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/usb.h -------------------------------------------------------------------------------- /usb_baboon/usb_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/usb_enum.c -------------------------------------------------------------------------------- /usb_baboon/usb_watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_baboon/usb_watch.c -------------------------------------------------------------------------------- /usb_papoon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/.gitignore -------------------------------------------------------------------------------- /usb_papoon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/Makefile -------------------------------------------------------------------------------- /usb_papoon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/README.md -------------------------------------------------------------------------------- /usb_papoon/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/gpio.c -------------------------------------------------------------------------------- /usb_papoon/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/locore.s -------------------------------------------------------------------------------- /usb_papoon/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/main.c -------------------------------------------------------------------------------- /usb_papoon/mkvec: -------------------------------------------------------------------------------- 1 | #!/bin/ruby 2 | 3 | (0..67).each { |v| 4 | print ".word\tbogus\t\t/* IRQ %2d */\n" % v 5 | } 6 | -------------------------------------------------------------------------------- /usb_papoon/nvic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/nvic.c -------------------------------------------------------------------------------- /usb_papoon/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/ocd -------------------------------------------------------------------------------- /usb_papoon/papoon.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon.lds -------------------------------------------------------------------------------- /usb_papoon/papoon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/Makefile -------------------------------------------------------------------------------- /usb_papoon/papoon/bin_to_hex.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/bin_to_hex.hxx -------------------------------------------------------------------------------- /usb_papoon/papoon/core_cm3.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/core_cm3.hxx -------------------------------------------------------------------------------- /usb_papoon/papoon/example.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/example.cxx -------------------------------------------------------------------------------- /usb_papoon/papoon/papoon.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/papoon.hxx -------------------------------------------------------------------------------- /usb_papoon/papoon/regbits.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/regbits.hxx -------------------------------------------------------------------------------- /usb_papoon/papoon/stm32f103xb.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/stm32f103xb.hxx -------------------------------------------------------------------------------- /usb_papoon/papoon/stm32f103xb_tim.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/stm32f103xb_tim.hxx -------------------------------------------------------------------------------- /usb_papoon/papoon/usb_dev.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/usb_dev.cxx -------------------------------------------------------------------------------- /usb_papoon/papoon/usb_dev.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/usb_dev.hxx -------------------------------------------------------------------------------- /usb_papoon/papoon/usb_dev_cdc_acm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/usb_dev_cdc_acm.cxx -------------------------------------------------------------------------------- /usb_papoon/papoon/usb_dev_cdc_acm.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/usb_dev_cdc_acm.hxx -------------------------------------------------------------------------------- /usb_papoon/papoon/usb_mcu_init.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/usb_mcu_init.cxx -------------------------------------------------------------------------------- /usb_papoon/papoon/usb_mcu_init.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/papoon/usb_mcu_init.hxx -------------------------------------------------------------------------------- /usb_papoon/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/prf.c -------------------------------------------------------------------------------- /usb_papoon/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/rcc.c -------------------------------------------------------------------------------- /usb_papoon/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/serial.c -------------------------------------------------------------------------------- /usb_papoon/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/startup.c -------------------------------------------------------------------------------- /usb_papoon/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon/timer.c -------------------------------------------------------------------------------- /usb_papoon2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/.gitignore -------------------------------------------------------------------------------- /usb_papoon2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/Makefile -------------------------------------------------------------------------------- /usb_papoon2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/README.md -------------------------------------------------------------------------------- /usb_papoon2/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/gpio.c -------------------------------------------------------------------------------- /usb_papoon2/locore.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/locore.s -------------------------------------------------------------------------------- /usb_papoon2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/main.c -------------------------------------------------------------------------------- /usb_papoon2/mkvec: -------------------------------------------------------------------------------- 1 | #!/bin/ruby 2 | 3 | (0..67).each { |v| 4 | print ".word\tbogus\t\t/* IRQ %2d */\n" % v 5 | } 6 | -------------------------------------------------------------------------------- /usb_papoon2/nvic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/nvic.c -------------------------------------------------------------------------------- /usb_papoon2/ocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/ocd -------------------------------------------------------------------------------- /usb_papoon2/papoon.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon.lds -------------------------------------------------------------------------------- /usb_papoon2/papoon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon/Makefile -------------------------------------------------------------------------------- /usb_papoon2/papoon/example.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon/example.cxx -------------------------------------------------------------------------------- /usb_papoon2/papoon/papoon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon/papoon.h -------------------------------------------------------------------------------- /usb_papoon2/papoon/regbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon/regbits.h -------------------------------------------------------------------------------- /usb_papoon2/papoon/stm32f103xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon/stm32f103xb.h -------------------------------------------------------------------------------- /usb_papoon2/papoon/stm32f103xb_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon/stm32f103xb_tim.h -------------------------------------------------------------------------------- /usb_papoon2/papoon/usb_dev.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon/usb_dev.cxx -------------------------------------------------------------------------------- /usb_papoon2/papoon/usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon/usb_dev.h -------------------------------------------------------------------------------- /usb_papoon2/papoon/usb_dev_cdc_acm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon/usb_dev_cdc_acm.cxx -------------------------------------------------------------------------------- /usb_papoon2/papoon/usb_dev_cdc_acm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon/usb_dev_cdc_acm.h -------------------------------------------------------------------------------- /usb_papoon2/papoon/usb_mcu_init.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon/usb_mcu_init.cxx -------------------------------------------------------------------------------- /usb_papoon2/papoon/usb_mcu_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/papoon/usb_mcu_init.h -------------------------------------------------------------------------------- /usb_papoon2/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/prf.c -------------------------------------------------------------------------------- /usb_papoon2/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/rcc.c -------------------------------------------------------------------------------- /usb_papoon2/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/serial.c -------------------------------------------------------------------------------- /usb_papoon2/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/startup.c -------------------------------------------------------------------------------- /usb_papoon2/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/timer.c -------------------------------------------------------------------------------- /usb_papoon2/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/stm32f103/HEAD/usb_papoon2/usb.c --------------------------------------------------------------------------------