├── BackendSupport ├── CMSIS │ ├── arm_common_tables.h │ ├── arm_const_structs.h │ ├── arm_math.h │ ├── core_cm0.h │ ├── core_cmFunc.h │ ├── core_cmInstr.h │ ├── libarm_cortexM0l_math.a │ ├── startup_stm32f030.s │ ├── stm32f0xx.h │ ├── system_stm32f0xx.c │ └── system_stm32f0xx.h ├── Documents │ ├── DM00031936.pdf │ ├── DM00051352.pdf │ └── DM00104043.pdf ├── StdPeriph │ ├── stm32f0xx_adc.c │ ├── stm32f0xx_adc.h │ ├── stm32f0xx_can.c │ ├── stm32f0xx_can.h │ ├── stm32f0xx_cec.c │ ├── stm32f0xx_cec.h │ ├── stm32f0xx_comp.c │ ├── stm32f0xx_comp.h │ ├── stm32f0xx_conf.h │ ├── stm32f0xx_crc.c │ ├── stm32f0xx_crc.h │ ├── stm32f0xx_crs.c │ ├── stm32f0xx_crs.h │ ├── stm32f0xx_dac.c │ ├── stm32f0xx_dac.h │ ├── stm32f0xx_dbgmcu.c │ ├── stm32f0xx_dbgmcu.h │ ├── stm32f0xx_dma.c │ ├── stm32f0xx_dma.h │ ├── stm32f0xx_exti.c │ ├── stm32f0xx_exti.h │ ├── stm32f0xx_flash.c │ ├── stm32f0xx_flash.h │ ├── stm32f0xx_gpio.c │ ├── stm32f0xx_gpio.h │ ├── stm32f0xx_i2c.c │ ├── stm32f0xx_i2c.h │ ├── stm32f0xx_iwdg.c │ ├── stm32f0xx_iwdg.h │ ├── stm32f0xx_misc.c │ ├── stm32f0xx_misc.h │ ├── stm32f0xx_pwr.c │ ├── stm32f0xx_pwr.h │ ├── stm32f0xx_rcc.c │ ├── stm32f0xx_rcc.h │ ├── stm32f0xx_rtc.c │ ├── stm32f0xx_rtc.h │ ├── stm32f0xx_spi.c │ ├── stm32f0xx_spi.h │ ├── stm32f0xx_syscfg.c │ ├── stm32f0xx_syscfg.h │ ├── stm32f0xx_tim.c │ ├── stm32f0xx_tim.h │ ├── stm32f0xx_usart.c │ ├── stm32f0xx_usart.h │ ├── stm32f0xx_wwdg.c │ └── stm32f0xx_wwdg.h ├── openocd.cfg └── stm32f031_linker.ld ├── HardwareLayer ├── digital.h ├── systick_delay.c ├── systick_delay.h ├── usart1.c ├── usart1.h ├── xprintf.c └── xprintf.h ├── Platforms └── polyphonic-fm-synthesizer │ ├── Hardware │ ├── stm32f0_i2s.brd │ └── stm32f0_i2s.sch │ └── Mechanical │ ├── box.stl │ ├── case.scad │ ├── lid+case.stl │ └── lid.stl ├── README.md ├── _blink ├── Makefile └── main.c ├── _i2s_16bit_dma ├── Makefile └── main.c ├── _i2s_24bit_dma ├── Makefile ├── lut.h ├── lutgen ├── lutgen.c └── main.c ├── _synth ├── Makefile ├── lut.h ├── main.c ├── math_func.h ├── ringBuffer.h ├── soft_uart.h └── synth.h └── _usart ├── Makefile └── main.c /BackendSupport/CMSIS/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/CMSIS/arm_common_tables.h -------------------------------------------------------------------------------- /BackendSupport/CMSIS/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/CMSIS/arm_const_structs.h -------------------------------------------------------------------------------- /BackendSupport/CMSIS/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/CMSIS/arm_math.h -------------------------------------------------------------------------------- /BackendSupport/CMSIS/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/CMSIS/core_cm0.h -------------------------------------------------------------------------------- /BackendSupport/CMSIS/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/CMSIS/core_cmFunc.h -------------------------------------------------------------------------------- /BackendSupport/CMSIS/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/CMSIS/core_cmInstr.h -------------------------------------------------------------------------------- /BackendSupport/CMSIS/libarm_cortexM0l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/CMSIS/libarm_cortexM0l_math.a -------------------------------------------------------------------------------- /BackendSupport/CMSIS/startup_stm32f030.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/CMSIS/startup_stm32f030.s -------------------------------------------------------------------------------- /BackendSupport/CMSIS/stm32f0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/CMSIS/stm32f0xx.h -------------------------------------------------------------------------------- /BackendSupport/CMSIS/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/CMSIS/system_stm32f0xx.c -------------------------------------------------------------------------------- /BackendSupport/CMSIS/system_stm32f0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/CMSIS/system_stm32f0xx.h -------------------------------------------------------------------------------- /BackendSupport/Documents/DM00031936.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/Documents/DM00031936.pdf -------------------------------------------------------------------------------- /BackendSupport/Documents/DM00051352.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/Documents/DM00051352.pdf -------------------------------------------------------------------------------- /BackendSupport/Documents/DM00104043.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/Documents/DM00104043.pdf -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_adc.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_adc.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_can.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_can.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_cec.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_cec.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_comp.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_comp.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_conf.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_crc.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_crc.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_crs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_crs.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_crs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_crs.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_dac.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_dac.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_dbgmcu.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_dbgmcu.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_dma.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_dma.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_exti.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_exti.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_flash.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_flash.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_gpio.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_gpio.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_i2c.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_i2c.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_iwdg.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_iwdg.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_misc.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_misc.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_pwr.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_pwr.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_rcc.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_rcc.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_rtc.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_rtc.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_spi.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_spi.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_syscfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_syscfg.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_syscfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_syscfg.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_tim.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_tim.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_usart.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_usart.h -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_wwdg.c -------------------------------------------------------------------------------- /BackendSupport/StdPeriph/stm32f0xx_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/StdPeriph/stm32f0xx_wwdg.h -------------------------------------------------------------------------------- /BackendSupport/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/openocd.cfg -------------------------------------------------------------------------------- /BackendSupport/stm32f031_linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/BackendSupport/stm32f031_linker.ld -------------------------------------------------------------------------------- /HardwareLayer/digital.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/HardwareLayer/digital.h -------------------------------------------------------------------------------- /HardwareLayer/systick_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/HardwareLayer/systick_delay.c -------------------------------------------------------------------------------- /HardwareLayer/systick_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/HardwareLayer/systick_delay.h -------------------------------------------------------------------------------- /HardwareLayer/usart1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/HardwareLayer/usart1.c -------------------------------------------------------------------------------- /HardwareLayer/usart1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/HardwareLayer/usart1.h -------------------------------------------------------------------------------- /HardwareLayer/xprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/HardwareLayer/xprintf.c -------------------------------------------------------------------------------- /HardwareLayer/xprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/HardwareLayer/xprintf.h -------------------------------------------------------------------------------- /Platforms/polyphonic-fm-synthesizer/Hardware/stm32f0_i2s.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/Platforms/polyphonic-fm-synthesizer/Hardware/stm32f0_i2s.brd -------------------------------------------------------------------------------- /Platforms/polyphonic-fm-synthesizer/Hardware/stm32f0_i2s.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/Platforms/polyphonic-fm-synthesizer/Hardware/stm32f0_i2s.sch -------------------------------------------------------------------------------- /Platforms/polyphonic-fm-synthesizer/Mechanical/box.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/Platforms/polyphonic-fm-synthesizer/Mechanical/box.stl -------------------------------------------------------------------------------- /Platforms/polyphonic-fm-synthesizer/Mechanical/case.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/Platforms/polyphonic-fm-synthesizer/Mechanical/case.scad -------------------------------------------------------------------------------- /Platforms/polyphonic-fm-synthesizer/Mechanical/lid+case.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/Platforms/polyphonic-fm-synthesizer/Mechanical/lid+case.stl -------------------------------------------------------------------------------- /Platforms/polyphonic-fm-synthesizer/Mechanical/lid.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/Platforms/polyphonic-fm-synthesizer/Mechanical/lid.stl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/README.md -------------------------------------------------------------------------------- /_blink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_blink/Makefile -------------------------------------------------------------------------------- /_blink/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_blink/main.c -------------------------------------------------------------------------------- /_i2s_16bit_dma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_i2s_16bit_dma/Makefile -------------------------------------------------------------------------------- /_i2s_16bit_dma/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_i2s_16bit_dma/main.c -------------------------------------------------------------------------------- /_i2s_24bit_dma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_i2s_24bit_dma/Makefile -------------------------------------------------------------------------------- /_i2s_24bit_dma/lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_i2s_24bit_dma/lut.h -------------------------------------------------------------------------------- /_i2s_24bit_dma/lutgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_i2s_24bit_dma/lutgen -------------------------------------------------------------------------------- /_i2s_24bit_dma/lutgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_i2s_24bit_dma/lutgen.c -------------------------------------------------------------------------------- /_i2s_24bit_dma/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_i2s_24bit_dma/main.c -------------------------------------------------------------------------------- /_synth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_synth/Makefile -------------------------------------------------------------------------------- /_synth/lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_synth/lut.h -------------------------------------------------------------------------------- /_synth/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_synth/main.c -------------------------------------------------------------------------------- /_synth/math_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_synth/math_func.h -------------------------------------------------------------------------------- /_synth/ringBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_synth/ringBuffer.h -------------------------------------------------------------------------------- /_synth/soft_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_synth/soft_uart.h -------------------------------------------------------------------------------- /_synth/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_synth/synth.h -------------------------------------------------------------------------------- /_usart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_usart/Makefile -------------------------------------------------------------------------------- /_usart/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kehribar/stm32f031_template/HEAD/_usart/main.c --------------------------------------------------------------------------------