Difference between revisions of "Using Keil µVision 5 MDK-ARM"

From uGFX Wiki
Jump to: navigation, search
(Adding µGFX)
(Adding µGFX)
Line 33: Line 33:
  
 
The last thing to do is copying the <code>gfxconf.example.h</code> from the uGFX library directory to the Keil project and renaming it to <code>gfxconf.h</code>. For detailed information about all available configuration settings, please see [[configuration]].<br>
 
The last thing to do is copying the <code>gfxconf.example.h</code> from the uGFX library directory to the Keil project and renaming it to <code>gfxconf.h</code>. For detailed information about all available configuration settings, please see [[configuration]].<br>
Note that this file also needs to be added to the <code>Include Paths</code>. As we placed the file in the top-level project directory we simply have to add the proj
+
Note that this file also needs to be added to the <code>Include Paths</code>. In this case we placed the configuration file in the top-level project directory so we simply add the project directory to the include paths (. is the path to the current directory).
 +
 
 +
[[File:using_keil_04.png]]
 +
[[File:using_keil_05.png]]
  
 
== Adding Drivers ==
 
== Adding Drivers ==
 
ToDo
 
ToDo

Revision as of 21:50, 8 December 2015

This article will describe the necessary steps to successfully integrate the µGFX library into an existing Keil µVision 5 project. This article won't cover how uGFX can be downloaded as this is explained in the Getting Started article.

Used tools

The following tools were used in this article:

  • Keil µVision 5.16a MDK-ARM Professional

Furthermore, this article will show how to set up a project that uses the drivers for an STM32F7-Discovery board. However, the process is exactly the same for any driver.

Note: The same guide applies for all Keil µVision versions. You don't need to use the Professional version.

Structure

Sadly Keil µVision doesn't really support a way of defining variables. Therefore, the µGFX library directory needs to be somewhere near the project directory. We recommend using the following structure:

.
├── Project 1
├── Project 2
├── Project 3
└── ugfx

Adding µGFX

Keil µVision doesn't support using Makefiles. Therefore, we'll use the single-file technique to add µGFX to an existing Keil project. For more information, see Integrate uGFX.

We start by creating a new group in the project tree on the left side by right-clicking on the project top level folder and selecting Add Group... As this folder will contain some of the uGFX source files, we'll name it ugfx. Inside that newly create group we have to add the gfx_mk.c file which can be found in the src directory of the ugfx library.

Using keil 01.png

Next, we need to add the top level uGFX library directory to the compiler include path. This is done in the C/C++ tab of the Target Options dialog. The path needs to be added to the Include Paths.

Using keil 02.png Using keil 03.png

The last thing to do is copying the gfxconf.example.h from the uGFX library directory to the Keil project and renaming it to gfxconf.h. For detailed information about all available configuration settings, please see configuration.
Note that this file also needs to be added to the Include Paths. In this case we placed the configuration file in the top-level project directory so we simply add the project directory to the include paths (. is the path to the current directory).

Using keil 04.png Using keil 05.png

Adding Drivers

ToDo