Difference between revisions of "Using PSoC Creator"

From uGFX Wiki
Jump to: navigation, search
(Adding µGFX)
(Adding µGFX)
Line 22: Line 22:
 
This guide will describe how to add the µGFX library to a PSoC Creator project using the [[Getting_Started#Single_File_Inclusion|Single-File-Inclusion technique]].
 
This guide will describe how to add the µGFX library to a PSoC Creator project using the [[Getting_Started#Single_File_Inclusion|Single-File-Inclusion technique]].
  
The first step is to add the file <code>gfx_mk.c</code> which can be found in the <code>/src</code> directory of the µGFX library directory to the project. Additionally, we add the driver file of the driver(s) that we are going to use which can be found in the <code>/drivers</code> directory of the µGFX library. Lastly, we add the <code>gfxconf.h</code> [[configuration|configuration file]] (a template can be found in the top level directory of the µGFX library).
+
The first step is to add the file <code>gfx_mk.c</code> which can be found in the <code>/src</code> directory of the µGFX library directory to the project.
  
 
[[File:psoc_file_structure.png]]
 
[[File:psoc_file_structure.png]]
  
Next, we need to add the top level uGFX library directory and the driver directory to the compiler include path.
+
Next, we need to add the top level uGFX library directory and the driver directory to the compiler include path. This is done in the <code>Build Settings</code> dialog.
  
 
[[File:psoc_build_settings.png]]
 
[[File:psoc_build_settings.png]]
 
[[File:psoc_include_paths.png]]
 
[[File:psoc_include_paths.png]]

Revision as of 21:40, 17 August 2016

ILI9341 connected to PSoC 5LP via SPI.

This article will explain how the µGFX library can be added to an existing PSoC Creator project.

Used Tools

The following tools were used to create this guide:

  • PSoC Creator 3.3 CP3
  • PSoC 5LP Prototyping Kit (CY8CKIT-059)

However, this article has been kept as generic as possible and should be usable for any PSoC platform.

Structure

We recommend using the following folder structure:

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

Adding µGFX

This guide will describe how to add the µGFX library to a PSoC Creator project using the Single-File-Inclusion technique.

The first step is to add the file gfx_mk.c which can be found in the /src directory of the µGFX library directory to the project.

File:Psoc file structure.png

Next, we need to add the top level uGFX library directory and the driver directory to the compiler include path. This is done in the Build Settings dialog.

Psoc build settings.png File:Psoc include paths.png