本帖最后由 明月小厨 于 2013-1-3 11:26 编辑
void SystemInit(void) {} void GPIO_init(void) { RCC->APB2ENR|=1<<2; GPIOA->CRH=0X03; } void delay(void) { u32 n=1000000; for(;n>0;n--) ; }
int main(void) { GPIO_init(); while(1) { delay(); GPIOA->ODR = 0x0100; delay(); GPIOA->BSRR = 0x01000000; } }
|