User Activity

Posted on February 27, 2017 at 19:51I can not find enough information about the definition of a software interrupt with NVIC. If the edge of an internal software bit is positive, an interrupt routine should be executedThanks#stm32f4
Posted on February 16, 2017 at 20:44// Configure timer 2    RCC_APB1ENR.TIM2EN = 1;    TIM2_CR1.CEN = 0;    TIM2_CR2.TI1S = 0;    TIM2_PSC = ENCODER_TIM_PSC;    TIM2_ARR = ENCODER_TIM_RELOAD;    TIM2_CR1 |= 0x10;// Configure input capture    TIM2_CC...