Posted on May 17, 2011 at 09:33put this in your initialization
//////////////////////////////////////////////////////////////////////////////////////////////////////
SCU_APBPeriphClockConfig(__GPIO6, ENABLE);
// GPIO6 goes to the LEDs
GPIO_DeInit(GPIO6);
GPIO_StructInit(&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All;
GPIO_InitStructure.GPIO_Direction = GPIO_PinOutput;
GPIO_InitStructure.GPIO_Type = GPIO_Type_PushPull;
GPIO_InitStructure.GPIO_IPConnected = GPIO_IPConnected_Disable;
GPIO_InitStructure.GPIO_Alternate = GPIO_OutputAlt1;
GPIO_Init(GPIO6, &GPIO_InitStructure);
// //////////////////////////////////////////////////////////////////////////////////////////////////////
and put this in your app
GPIO_Write(GPIO6, display_byte);