├── .gitignore ├── CMakeLists.txt.clion ├── Library └── SPL │ ├── stm8s.h │ ├── stm8s_adc1.h │ ├── stm8s_awu.h │ ├── stm8s_beep.h │ ├── stm8s_clk.h │ ├── stm8s_exti.h │ ├── stm8s_flash.c │ ├── stm8s_flash.h │ ├── stm8s_gpio.h │ ├── stm8s_i2c.h │ ├── stm8s_itc.h │ ├── stm8s_iwdg.h │ ├── stm8s_rst.h │ ├── stm8s_spi.h │ ├── stm8s_tim1.h │ ├── stm8s_tim2.h │ ├── stm8s_tim4.h │ ├── stm8s_uart1.h │ └── stm8s_wwdg.h ├── Makefile ├── README.md └── User ├── bootstrap.c ├── bootstrap.h ├── main.c ├── stm8s_conf.h ├── stm8s_it.c.nope └── stm8s_it.h.nope /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt.clion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/CMakeLists.txt.clion -------------------------------------------------------------------------------- /Library/SPL/stm8s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_adc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_adc1.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_awu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_awu.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_beep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_beep.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_clk.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_exti.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_flash.c -------------------------------------------------------------------------------- /Library/SPL/stm8s_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_flash.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_gpio.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_i2c.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_itc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_itc.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_iwdg.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_rst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_rst.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_spi.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_tim1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_tim1.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_tim2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_tim2.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_tim4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_tim4.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_uart1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_uart1.h -------------------------------------------------------------------------------- /Library/SPL/stm8s_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Library/SPL/stm8s_wwdg.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/README.md -------------------------------------------------------------------------------- /User/bootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/User/bootstrap.c -------------------------------------------------------------------------------- /User/bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/User/bootstrap.h -------------------------------------------------------------------------------- /User/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/User/main.c -------------------------------------------------------------------------------- /User/stm8s_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/User/stm8s_conf.h -------------------------------------------------------------------------------- /User/stm8s_it.c.nope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/User/stm8s_it.c.nope -------------------------------------------------------------------------------- /User/stm8s_it.h.nope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MightyPork/stm8s_inline_spl/HEAD/User/stm8s_it.h.nope --------------------------------------------------------------------------------