Posted on May 17, 2011 at 13:28Thanks for your replying. You are correct. What I did is use: - RCC_APB2PeriphClockCmd - GPIO_Init(GPIOA, &GPIO_InitStructure); - GPIO_SetBits + GPIO_ResetBits or GPIO_WriteBit To read the data port pin, I use GPIO_...
Posted on May 17, 2011 at 13:28Hi, I am new with STM32F10X. Could anyone show me how to set/reset a pin. For example PA3 of STM32F103VBH6. I try GPIO_WriteBits / GPIO_SetBits / GPIO_ResetBits but it does not work? Thank you very much.
Posted on May 17, 2011 at 13:27Thank you for your replying. I added one more interface and report descriptor in usb_desc.c. Also, I changed the CustomHID_Data_Setup function like this: RESULT CustomHID_Data_Setup(u8 RequestNo) { u8 *(*CopyRoutine)(...
Posted on May 17, 2011 at 13:27Hi, I am working with the demo board STM32F10X-128K-EVAL. I am making the HID device with multiple intefaces (based on the Custom HID project for the demo board). I changed the usb_desc.c by adding one more interface a...