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