User Activity

Posted on October 21, 2013 at 10:26 Hello again, I have learned that this: void DMA2_Stream3_IRQHandler() { // Test if DMA Stream Transfer Complete interrupt if (DMA_GetITStatus(DMA2_Stream3, DMA_IT_TCIF3)) { DMA_ClearITPend...
Posted on October 14, 2013 at 08:32 Hello, I want to sample 3 channels on ADC1 and 2 channels on ADC3. Does i have the ADCs to use in dual or tripple mode? The following Code does not work :( /* Sample Temp, VRef, VBat...
Posted on October 10, 2013 at 08:20 Hi, I will output a PWM Signal on a STM21F205 Pin A3 and use the following code: GPIO_InitTypeDef GPIO_InitStructure; TIM_TimeBaseInitTypeDef TIM_TimeBaseInitStruct; TIM_OCInitTypeDef TIM_OC...
Posted on September 27, 2013 at 11:21Hello, I'm trying to receive data on an STM32F205 SPI1 as fast as possible. The sender is a STM32F4, and it sends commands in different lengths up to 2048 Bytes per command. There is no OS on the receiver, just t...
Posted on August 23, 2013 at 12:48Hello again, I have connected two STM32F2 via SPI1. The data will be transfered via a variable sized datablock. The first two bytes are a command (5 bit) and a length (11bit) information of the following block. Is i...