Click here to Skip to main content
15,894,017 members
Articles / Web Development / HTML

STM32 Discovery: The Basics - Creating a Project

Rate me:
Please Sign up or sign in to vote.
4.75/5 (5 votes)
25 Jan 2011BSD4 min read 92.4K   1.7K   19  
Creating a project with Keil for a 32KB program space
#include <stm32f10x_lib.h>
#include "STM32_Init.h"

int main (void)
{
	stm32_Init();
	return 0;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
Software Developer
Canada Canada
I am a Software developer with an interest in embedded development and hardware design.

check out my blog at http://hobbymc.blogspot.com

Comments and Discussions