Add initial template for STM32L010x4

This commit is contained in:
2023-01-17 21:26:02 +01:00
commit 3bbd53b0d5
12 changed files with 9738 additions and 0 deletions

16
setup/system_init.c Normal file
View File

@@ -0,0 +1,16 @@
#include <stm32l0xx.h>
static void __init_default_clocks(void)
{
/* Nothing yet to do
* For this series, power consumption is an integral key parameter.
* Clock config has to be done properly according to the design needs.
*/
}
void __system_init(void)
{
__init_default_clocks();
}