User Activity

Posted on September 09, 2014 at 11:52I implemented the ADC with Dual Regular simultaneous mode on the STM32CubeF4 library. I have problem on the initialization, seem it does not correctly. I tried to read Vref on the ADC1 and the ADC value on the AD...
Posted on February 21, 2014 at 08:45Hi, every one.I create this structure. Then I try to find size of this structure. But it seem wrong.typedef struct {    uint8_t  a;    uint8_t  b;    uint16_t c;    uint16_t d;    uint8_t  e;} test;sizeof (test) =...
Posted on February 04, 2014 at 12:45Hi,I want to calculate CRC with hardware CRC but polynomial on the register is work on 32 bits.Can possible to calculate CRC 8-bits with hardware in the MCU? And how?Or I have to use sw crc.Thank everyone.
Posted on January 30, 2014 at 07:43 Hi, I need to implement acculate delay_us. Try to use timer like this. void delay_us ( uint32_t usec ) { TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure; /* TIM2 clock enable */ RCC_APB1PeriphC...
Posted on January 27, 2014 at 06:13Hello,I have many questions about ADC Multi-Channel to ask and thank you for your helping. I used STM32F417ZGT6.1. I used ADC to read voltage in 2 channel with below setting.01./* Enable ADCx, DMA and GPIO clocks *...