User Activity

Posted on November 17, 2017 at 09:04 What is the difference between the two?
Posted on October 29, 2017 at 13:23Smapling Time > 15 cyclese if setting 15 ADC Clock cycles ??
Posted on October 10, 2017 at 14:14setting CC1IE:1 (TIM10->DIER) capture is good, but not occur capture interruptwhy?this is my sorce code  volatile uint32_t temp2 =0;  /*******GPIOG_Ouput_Init****************/  //RCC  RCC->AHB1ENR |= 0x00000001<<6;...
Posted on October 01, 2017 at 07:24  I used STM32F429ZII make this sorce codeGPIOF->MODER |= 0x00002000; //PF6 AF modeGPIOF->PUPDR |= 0x00002000; //PF6 pull downGPIOF->AFR[0]|= 0x03000000; //PF6 AF3(TIM8..11)It is good work. ( PORTF6 IDR is good wor...
Posted on September 23, 2017 at 16:27When is the ISPR register used?ISPR [0] | = 0x00000001 << 6; // (EXTI0 Position)Does this code convert the EXTI0 interrupt into the pending state so that the EXTI0 interrupt should not be executed?But the interru...