I recently installed Windows Live Writer and well this is a test. The layout is pretty cool so far. Seems ultra easy to use. If you can read this then it works! Smile

int main(void)
{

GPIO_InitTypeDef *LEDdef;

LEDdef->GPIO_Pin = GPIO_Pin_15;
LEDdef->GPIO_Mode = GPIO_Mode_OUT;
LEDdef->GPIO_Speed = GPIO_Speed_50MHz;
LEDdef->GPIO_OType = GPIO_OType_PP;
LEDdef->GPIO_PuPd = GPIO_PuPd_NOPULL;

GPIO_Init(GPIOD, LEDdef);

while(1)
{

}

return 0;
}

Above is a test of a code snippet. Updating page while still on it is ok as well Smile

By admin

Leave a Reply

Your email address will not be published. Required fields are marked *