stm32f103 타이머stm32 cortex-m3(STM32F103C8T6) 1초만들기
#include "stm32f10x.h" void TIM2_IRQHandler(); //함수 선언 unsigned int count=0; int main(void) { RCC->APB2ENR|=0x8; //GPIOB 활성화 RCC->APB1ENR|=0x1; //TIM2 활성화 NVIC->ISER[0]|=(0x1ARR = 7199; // period TIM2->PSC = 99; // prescaler NVIC->IP[28]=0x01; //인터럽트 우선순위를 설정하는 레지스터입니다(지금은 사용하지 않습니다) TIM2->DIER=0x1; //360p 1: Update interrupt enabled. TIM2->EGR=0x1; //363p GPIOB->CRL=(0x3
arm cortex-m3
2015. 8. 14. 16:11