User Activity

Posted on February 27, 2018 at 04:11When I use this function __HAL_TIM_SET_COMPARE(__HANDLE__, __CHANNEL__, __COMPARE__) like this:__HAL_TIM_SET_COMPARE(&htim3,TIM_CHANNEL_2,10);//I should use the '&' with the handle para.what will happen if I use i...
Posted on November 17, 2017 at 08:23Background:1. 1ms timer to trigger adc interruput;if(htim->Instance == TIM1)//1mS timer { HAL_ADC_Start_IT(&hadc); HAL_GPIO_TogglePin(GPIOA,Pin_15); }2. hadc.Init.EOCSelection = ADC_EOC_SEQ_CONV;adc interruput cal...
Posted on November 16, 2017 at 08:49MCU: STM32F072RBhadc.Init.EOCSelection = ADC_EOC_SINGLE_CONV;I have try to set hadc.Init.EOCSelection as ADC_EOC_SINGLE_CONV and ADC_EOC_SEQ_CONV to take a look in debug mode using Keil 5.void HAL_ADC_ConvCpltCall...
Posted on August 01, 2017 at 04:08First, I introduce the background simply. I have program the STM32F072RB for somedays. I do this project start with STM32CubeMX. It�s going well until now. I have using the 2 DMA for SPI transmit before. And I want ...
Posted on May 17, 2017 at 07:54Hi, I have chosen STM32F072RB for our project and I have use it in design. But now we must store about 128-byte data for the calibration of our device. STM32F072RB�s flash is 128K. it is too big for this application. S...