Posted on May 02, 2014 at 15:44Using the brand new CubeMx version (4.2, released two days ago), I took the .ioc file, generated code for Keil 4.73: no issue in Keil, link with no errors, and the gpio.c file clearly present in the project. Maybe it i...
Posted on May 01, 2014 at 19:13 what about GPIO_PinAFConfig(GPIOB, GPIO_Pin_6, GPIO_AF_I2C1); // instead of GPIO_Pin6
GPIO_PinAFConfig(GPIOB, GPIO_Pin_9, GPIO_AF_I2C1); // instead of GPIO_Pin9 Because the first use of them seems ok, when you...
Posted on May 01, 2014 at 18:36Could be better like that: GPIO_InitTypeDef GPIO_InitStruct; // instead of GPIO_InitStructure ... GPIO_Init(GPIOB, &GPIO_InitStruct); // same change Rgds.
Posted on May 01, 2014 at 10:28But I really wish to know if its intended or is it just bug. Smells like a bug... Otherwise, I agree with you and would like to know the reason why. If my understanding of the User Manual (UM1718, Appendix B.1, ''STM32...