2014-03-30 05:35 AM
Guys,
How can I configure all the pins on PORT D as output ? I see for one pin :
1.
GPIO_InitStructure.GPIO_Pin = LED1_D_PIN;
2.
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
3.
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
4.
GPIO_Init(LED1_D_PORT, &GPIO_InitStructure);
Thanks
2014-03-30 05:45 AM
GPIO_Pin is a bit field
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOD, &GPIO_InitStructure);