RefKEIL/ProjetsKEIL/Projet_TP1/Source/Principal.c
2023-03-17 12:25:06 +01:00

12 lines
148 B
C

#include "stm32f10x.h"
#include "stdio.h"
int main (void)
{
RCC->APB2ENR |= (0x01 << 2) | (0x01 << 3) | (0x01 << 4) ;
do
{
}
while (1) ;
}