laurelin/src/system.c
2020-09-02 00:12:14 +02:00

9 lines
137 B
C

#include <stdint.h>
#include "stm32f030x6.h"
void SystemInit(void)
{
// Disable all interrupts
RCC->CIR = 0x00000000;
}