├── .vscode └── settings.json ├── Core └── Src │ └── system_stm32g0xx.c ├── Drivers └── CMSIS │ ├── Core │ ├── Include │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_armclang_ltm.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── cmsis_version.h │ │ ├── core_armv81mml.h │ │ ├── core_armv8mbl.h │ │ ├── core_armv8mml.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm1.h │ │ ├── core_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm35p.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ ├── mpu_armv7.h │ │ ├── mpu_armv8.h │ │ └── tz_context.h │ └── Template │ │ └── ARMv8-M │ │ ├── main_s.c │ │ └── tz_context.c │ ├── Device │ └── ST │ │ └── STM32G0xx │ │ ├── Include │ │ ├── stm32g030xx.h │ │ ├── stm32g031xx.h │ │ ├── stm32g041xx.h │ │ ├── stm32g050xx.h │ │ ├── stm32g051xx.h │ │ ├── stm32g061xx.h │ │ ├── stm32g070xx.h │ │ ├── stm32g071xx.h │ │ ├── stm32g081xx.h │ │ ├── stm32g0b0xx.h │ │ ├── stm32g0b1xx.h │ │ ├── stm32g0c1xx.h │ │ ├── stm32g0xx.h │ │ └── system_stm32g0xx.h │ │ ├── LICENSE.txt │ │ └── Source │ │ └── Templates │ │ ├── arm │ │ ├── startup_stm32g030xx.s │ │ ├── startup_stm32g031xx.s │ │ ├── startup_stm32g041xx.s │ │ ├── startup_stm32g050xx.s │ │ ├── startup_stm32g051xx.s │ │ ├── startup_stm32g061xx.s │ │ ├── startup_stm32g070xx.s │ │ ├── startup_stm32g071xx.s │ │ ├── startup_stm32g081xx.s │ │ ├── startup_stm32g0b0xx.s │ │ ├── startup_stm32g0b1xx.s │ │ └── startup_stm32g0c1xx.s │ │ ├── gcc │ │ ├── startup_stm32g030xx.s │ │ ├── startup_stm32g031xx.s │ │ ├── startup_stm32g041xx.s │ │ ├── startup_stm32g050xx.s │ │ ├── startup_stm32g051xx.s │ │ ├── startup_stm32g061xx.s │ │ ├── startup_stm32g070xx.s │ │ ├── startup_stm32g071xx.s │ │ ├── startup_stm32g081xx.s │ │ ├── startup_stm32g0b0xx.s │ │ ├── startup_stm32g0b1xx.s │ │ └── startup_stm32g0c1xx.s │ │ ├── iar │ │ ├── linker │ │ │ ├── stm32g030xx_flash.icf │ │ │ ├── stm32g030xx_sram.icf │ │ │ ├── stm32g031xx_flash.icf │ │ │ ├── stm32g031xx_sram.icf │ │ │ ├── stm32g041xx_flash.icf │ │ │ ├── stm32g041xx_sram.icf │ │ │ ├── stm32g050xx_flash.icf │ │ │ ├── stm32g050xx_sram.icf │ │ │ ├── stm32g051xx_flash.icf │ │ │ ├── stm32g051xx_sram.icf │ │ │ ├── stm32g061xx_flash.icf │ │ │ ├── stm32g061xx_sram.icf │ │ │ ├── stm32g070xx_flash.icf │ │ │ ├── stm32g070xx_sram.icf │ │ │ ├── stm32g071xx_flash.icf │ │ │ ├── stm32g071xx_sram.icf │ │ │ ├── stm32g081xx_flash.icf │ │ │ ├── stm32g081xx_sram.icf │ │ │ ├── stm32g0b0xx_flash.icf │ │ │ ├── stm32g0b0xx_sram.icf │ │ │ ├── stm32g0b1xx_flash.icf │ │ │ ├── stm32g0b1xx_sram.icf │ │ │ ├── stm32g0c1xx_flash.icf │ │ │ └── stm32g0c1xx_sram.icf │ │ ├── startup_stm32g030xx.s │ │ ├── startup_stm32g031xx.s │ │ ├── startup_stm32g041xx.s │ │ ├── startup_stm32g050xx.s │ │ ├── startup_stm32g051xx.s │ │ ├── startup_stm32g061xx.s │ │ ├── startup_stm32g070xx.s │ │ ├── startup_stm32g071xx.s │ │ ├── startup_stm32g081xx.s │ │ ├── startup_stm32g0b0xx.s │ │ ├── startup_stm32g0b1xx.s │ │ └── startup_stm32g0c1xx.s │ │ └── system_stm32g0xx.c │ ├── Include │ ├── cmsis_armcc.h │ ├── cmsis_armclang.h │ ├── cmsis_armclang_ltm.h │ ├── cmsis_compiler.h │ ├── cmsis_gcc.h │ ├── cmsis_iccarm.h │ ├── cmsis_version.h │ ├── core_armv81mml.h │ ├── core_armv8mbl.h │ ├── core_armv8mml.h │ ├── core_cm0.h │ ├── core_cm0plus.h │ ├── core_cm1.h │ ├── core_cm23.h │ ├── core_cm3.h │ ├── core_cm33.h │ ├── core_cm35p.h │ ├── core_cm4.h │ ├── core_cm7.h │ ├── core_sc000.h │ ├── core_sc300.h │ ├── mpu_armv7.h │ ├── mpu_armv8.h │ └── tz_context.h │ ├── LICENSE.txt │ └── docs │ └── General │ └── html │ └── LICENSE.txt ├── MDK-ARM ├── .vscode │ ├── c_cpp_properties.json │ ├── keil-assistant.log │ ├── settings.json │ └── uv4.log.lock ├── DebugConfig │ └── light_STM32G030F6Px_1.0.0.dbgconf ├── EventRecorderStub.scvd ├── RTE │ ├── Device │ │ └── STM32G030F6Px │ │ │ ├── startup_stm32g030xx.s │ │ │ └── system_stm32g0xx.c │ └── _light │ │ └── RTE_Components.h ├── light.uvguix.Defenver ├── light.uvoptx ├── light.uvprojx ├── light │ ├── adc.d │ ├── adc.o │ ├── delay.d │ ├── delay.o │ ├── dma.d │ ├── dma.o │ ├── gpio.d │ ├── gpio.o │ ├── lcd.d │ ├── lcd.o │ ├── lcd_init.d │ ├── lcd_init.o │ ├── light.axf │ ├── light.build_log.htm │ ├── light.hex │ ├── light.htm │ ├── light.lnp │ ├── light.map │ ├── light.sct │ ├── light_light.dep │ ├── main.d │ ├── main.o │ ├── osc.d │ ├── osc.o │ ├── spi.d │ ├── spi.o │ ├── startup_stm32g030xx.d │ ├── startup_stm32g030xx.o │ ├── sys.d │ ├── sys.o │ ├── system_stm32g0xx.d │ ├── system_stm32g0xx.o │ ├── timer.d │ ├── timer.o │ ├── uart.d │ └── uart.o ├── main.c ├── startup_stm32g030xx.lst └── startup_stm32g030xx.s ├── README.md ├── keilkill.bat └── user ├── adc.c ├── adc.h ├── delay.c ├── delay.h ├── dma.c ├── dma.h ├── gpio.c ├── gpio.h ├── lcd.c ├── lcd.h ├── lcd_font.h ├── lcd_init.c ├── lcd_init.h ├── osc.c ├── osc.h ├── per_conf.h ├── spi.c ├── spi.h ├── sys.c ├── sys.h ├── timer.c ├── timer.h ├── uart.c └── uart.h /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Core/Src/system_stm32g0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Core/Src/system_stm32g0xx.c -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_armclang_ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/cmsis_armclang_ltm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/cmsis_version.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_armv81mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_armv81mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_armv8mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_cm0.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_cm0plus.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_cm1.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_cm23.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_cm3.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_cm33.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm35p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_cm35p.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_cm4.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_cm7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_sc000.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/core_sc300.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/mpu_armv7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/mpu_armv8.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Include/tz_context.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Template/ARMv8-M/main_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Template/ARMv8-M/main_s.c -------------------------------------------------------------------------------- /Drivers/CMSIS/Core/Template/ARMv8-M/tz_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Core/Template/ARMv8-M/tz_context.c -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g030xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g030xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g031xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g031xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g041xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g041xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g050xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g050xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g051xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g051xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g061xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g061xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g071xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g071xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g081xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g081xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0b0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0b0xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0b1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0b1xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0c1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0c1xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/LICENSE.txt -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g030xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g030xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g031xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g031xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g041xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g041xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g050xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g050xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g051xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g051xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g061xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g061xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g070xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g070xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g071xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g071xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g081xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g081xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g0b0xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g0b0xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g0b1xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g0b1xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g0c1xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/arm/startup_stm32g0c1xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g030xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g030xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g031xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g031xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g041xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g041xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g050xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g050xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g051xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g051xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g061xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g061xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g070xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g070xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g071xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g071xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g081xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g081xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g0b0xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g0b0xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g0b1xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g0b1xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g0c1xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/gcc/startup_stm32g0c1xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g030xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g030xx_flash.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g030xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g030xx_sram.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g031xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g031xx_flash.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g031xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g031xx_sram.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g041xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g041xx_flash.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g041xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g041xx_sram.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g050xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g050xx_flash.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g050xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g050xx_sram.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g051xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g051xx_flash.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g051xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g051xx_sram.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g061xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g061xx_flash.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g061xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g061xx_sram.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g070xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g070xx_flash.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g070xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g070xx_sram.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g071xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g071xx_flash.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g071xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g071xx_sram.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g081xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g081xx_flash.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g081xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g081xx_sram.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g0b0xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g0b0xx_flash.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g0b0xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g0b0xx_sram.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g0b1xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g0b1xx_flash.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g0b1xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g0b1xx_sram.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g0c1xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g0c1xx_flash.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g0c1xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/linker/stm32g0c1xx_sram.icf -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g030xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g030xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g031xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g031xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g041xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g041xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g050xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g050xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g051xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g051xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g061xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g061xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g070xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g070xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g071xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g071xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g081xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g081xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g0b0xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g0b0xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g0b1xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g0b1xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g0c1xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/iar/startup_stm32g0c1xx.s -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/system_stm32g0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Device/ST/STM32G0xx/Source/Templates/system_stm32g0xx.c -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armclang_ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/cmsis_armclang_ltm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv81mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_armv81mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm35p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_cm35p.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /Drivers/CMSIS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/LICENSE.txt -------------------------------------------------------------------------------- /Drivers/CMSIS/docs/General/html/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/Drivers/CMSIS/docs/General/html/LICENSE.txt -------------------------------------------------------------------------------- /MDK-ARM/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /MDK-ARM/.vscode/keil-assistant.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/.vscode/keil-assistant.log -------------------------------------------------------------------------------- /MDK-ARM/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/.vscode/settings.json -------------------------------------------------------------------------------- /MDK-ARM/.vscode/uv4.log.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MDK-ARM/DebugConfig/light_STM32G030F6Px_1.0.0.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/DebugConfig/light_STM32G030F6Px_1.0.0.dbgconf -------------------------------------------------------------------------------- /MDK-ARM/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/EventRecorderStub.scvd -------------------------------------------------------------------------------- /MDK-ARM/RTE/Device/STM32G030F6Px/startup_stm32g030xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/RTE/Device/STM32G030F6Px/startup_stm32g030xx.s -------------------------------------------------------------------------------- /MDK-ARM/RTE/Device/STM32G030F6Px/system_stm32g0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/RTE/Device/STM32G030F6Px/system_stm32g0xx.c -------------------------------------------------------------------------------- /MDK-ARM/RTE/_light/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/RTE/_light/RTE_Components.h -------------------------------------------------------------------------------- /MDK-ARM/light.uvguix.Defenver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light.uvguix.Defenver -------------------------------------------------------------------------------- /MDK-ARM/light.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light.uvoptx -------------------------------------------------------------------------------- /MDK-ARM/light.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light.uvprojx -------------------------------------------------------------------------------- /MDK-ARM/light/adc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/adc.d -------------------------------------------------------------------------------- /MDK-ARM/light/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/adc.o -------------------------------------------------------------------------------- /MDK-ARM/light/delay.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/delay.d -------------------------------------------------------------------------------- /MDK-ARM/light/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/delay.o -------------------------------------------------------------------------------- /MDK-ARM/light/dma.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/dma.d -------------------------------------------------------------------------------- /MDK-ARM/light/dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/dma.o -------------------------------------------------------------------------------- /MDK-ARM/light/gpio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/gpio.d -------------------------------------------------------------------------------- /MDK-ARM/light/gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/gpio.o -------------------------------------------------------------------------------- /MDK-ARM/light/lcd.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/lcd.d -------------------------------------------------------------------------------- /MDK-ARM/light/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/lcd.o -------------------------------------------------------------------------------- /MDK-ARM/light/lcd_init.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/lcd_init.d -------------------------------------------------------------------------------- /MDK-ARM/light/lcd_init.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/lcd_init.o -------------------------------------------------------------------------------- /MDK-ARM/light/light.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/light.axf -------------------------------------------------------------------------------- /MDK-ARM/light/light.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/light.build_log.htm -------------------------------------------------------------------------------- /MDK-ARM/light/light.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/light.hex -------------------------------------------------------------------------------- /MDK-ARM/light/light.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/light.htm -------------------------------------------------------------------------------- /MDK-ARM/light/light.lnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/light.lnp -------------------------------------------------------------------------------- /MDK-ARM/light/light.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/light.map -------------------------------------------------------------------------------- /MDK-ARM/light/light.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/light.sct -------------------------------------------------------------------------------- /MDK-ARM/light/light_light.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/light_light.dep -------------------------------------------------------------------------------- /MDK-ARM/light/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/main.d -------------------------------------------------------------------------------- /MDK-ARM/light/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/main.o -------------------------------------------------------------------------------- /MDK-ARM/light/osc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/osc.d -------------------------------------------------------------------------------- /MDK-ARM/light/osc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/osc.o -------------------------------------------------------------------------------- /MDK-ARM/light/spi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/spi.d -------------------------------------------------------------------------------- /MDK-ARM/light/spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/spi.o -------------------------------------------------------------------------------- /MDK-ARM/light/startup_stm32g030xx.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/startup_stm32g030xx.d -------------------------------------------------------------------------------- /MDK-ARM/light/startup_stm32g030xx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/startup_stm32g030xx.o -------------------------------------------------------------------------------- /MDK-ARM/light/sys.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/sys.d -------------------------------------------------------------------------------- /MDK-ARM/light/sys.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/sys.o -------------------------------------------------------------------------------- /MDK-ARM/light/system_stm32g0xx.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/system_stm32g0xx.d -------------------------------------------------------------------------------- /MDK-ARM/light/system_stm32g0xx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/system_stm32g0xx.o -------------------------------------------------------------------------------- /MDK-ARM/light/timer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/timer.d -------------------------------------------------------------------------------- /MDK-ARM/light/timer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/timer.o -------------------------------------------------------------------------------- /MDK-ARM/light/uart.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/uart.d -------------------------------------------------------------------------------- /MDK-ARM/light/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/light/uart.o -------------------------------------------------------------------------------- /MDK-ARM/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/main.c -------------------------------------------------------------------------------- /MDK-ARM/startup_stm32g030xx.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/startup_stm32g030xx.lst -------------------------------------------------------------------------------- /MDK-ARM/startup_stm32g030xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/MDK-ARM/startup_stm32g030xx.s -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/README.md -------------------------------------------------------------------------------- /keilkill.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/keilkill.bat -------------------------------------------------------------------------------- /user/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/adc.c -------------------------------------------------------------------------------- /user/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/adc.h -------------------------------------------------------------------------------- /user/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/delay.c -------------------------------------------------------------------------------- /user/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/delay.h -------------------------------------------------------------------------------- /user/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/dma.c -------------------------------------------------------------------------------- /user/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/dma.h -------------------------------------------------------------------------------- /user/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/gpio.c -------------------------------------------------------------------------------- /user/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/gpio.h -------------------------------------------------------------------------------- /user/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/lcd.c -------------------------------------------------------------------------------- /user/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/lcd.h -------------------------------------------------------------------------------- /user/lcd_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/lcd_font.h -------------------------------------------------------------------------------- /user/lcd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/lcd_init.c -------------------------------------------------------------------------------- /user/lcd_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/lcd_init.h -------------------------------------------------------------------------------- /user/osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/osc.c -------------------------------------------------------------------------------- /user/osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/osc.h -------------------------------------------------------------------------------- /user/per_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/per_conf.h -------------------------------------------------------------------------------- /user/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/spi.c -------------------------------------------------------------------------------- /user/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/spi.h -------------------------------------------------------------------------------- /user/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/sys.c -------------------------------------------------------------------------------- /user/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/sys.h -------------------------------------------------------------------------------- /user/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/timer.c -------------------------------------------------------------------------------- /user/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/timer.h -------------------------------------------------------------------------------- /user/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/uart.c -------------------------------------------------------------------------------- /user/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eltecz/STM32G0_OSC/HEAD/user/uart.h --------------------------------------------------------------------------------