User Activity

Posted on August 25, 2011 at 16:49Hello, I have a buffer char buf[128]; And when I use ADC it gave me values like 1204 for eg. by ADC1ConvertedValue[1] which is the channel 1 for me. How could I store the 4 characters 1,2,0 and 4 into my buffer? I h...
Posted on August 17, 2011 at 10:39Hello, I saw that in usart.c there is the function   USART_SendData(USART2, 'a'); but this is for only one character (here 'a'). I want to send more than one character but I can't find how. I think that USART_SendDa...
Posted on August 02, 2011 at 11:56Hello, I can do a ADC conversion for 1 channel. But I have a problem for using 2 channels. I do this: ADC_InitStructure.ADC_NbrOfChannel = 2; ADC_RegularChannelConfig(ADC1, ADC_Channel_14, 1, ADC_SampleTime_13Cycles...
Posted on July 22, 2011 at 15:10Hello, I try to write what I receive into a .txt. First I do this: RCC_Configuration(); GPIO_Configuration();     USART_InitStructure.USART_BaudRate = 115200;   USART_InitStructure.USART_WordLength = USART_WordLengt...
Posted on July 19, 2011 at 10:34Hello, I am trying to combine my project with USB host project. And every time I compile I go straight to Hard Fault Handler when I enter into USBH_Init(&USB_OTG_FS_dev, &MSC_cb , &USR_Callbacks); The USB host project...