Browse Source

Move the uGFX based tools into a sub-directory of demos so they can be compiled using the standard build system facility for building demo's.

remotes/origin_old/ugfx_release_2.6
inmarket 8 years ago
parent
commit
93c9ebaa79
  1. 4
      demos/readme.txt
  2. 3
      demos/tools/touch_driver_test/demo.mk
  3. 0
      demos/tools/touch_driver_test/gfxconf.h
  4. 0
      demos/tools/touch_driver_test/main.c
  5. 3
      demos/tools/touch_raw_readings/demo.mk
  6. 0
      demos/tools/touch_raw_readings/gfxconf.h
  7. 0
      demos/tools/touch_raw_readings/main.c
  8. 3
      demos/tools/uGFXnetDisplay/demo.mk
  9. 0
      demos/tools/uGFXnetDisplay/gfxconf.h
  10. 0
      demos/tools/uGFXnetDisplay/main.c

4
demos/readme.txt

@ -2,7 +2,7 @@ This folder contains a few demos which explain how to use the library.
Only the main files are contained. No compile-able projects
All demos and examples stand under the BSD license as declared below and
Most demos and examples stand under the BSD license as declared below and
within each file:
/*
@ -34,3 +34,5 @@ within each file:
*/
Files under the 3rdparty directory are licensed as per the original contributor.
Files under the tools directory are licensed with either the uGFX license or the BSD
license - see each tool demo source code for its specific license.

3
demos/tools/touch_driver_test/demo.mk

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/tools/touch_driver_test
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

0
tools/touch_driver_test/gfxconf.h → demos/tools/touch_driver_test/gfxconf.h

0
tools/touch_driver_test/main.c → demos/tools/touch_driver_test/main.c

3
demos/tools/touch_raw_readings/demo.mk

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/tools/touch_raw_readings
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

0
tools/touch_raw_readings/gfxconf.h → demos/tools/touch_raw_readings/gfxconf.h

0
tools/touch_raw_readings/main.c → demos/tools/touch_raw_readings/main.c

3
demos/tools/uGFXnetDisplay/demo.mk

@ -0,0 +1,3 @@
DEMODIR = $(GFXLIB)/demos/tools/uGFXnetDisplay
GFXINC += $(DEMODIR)
GFXSRC += $(DEMODIR)/main.c

0
tools/uGFXnetDisplay/gfxconf.h → demos/tools/uGFXnetDisplay/gfxconf.h

0
tools/uGFXnetDisplay/main.c → demos/tools/uGFXnetDisplay/main.c

Loading…
Cancel
Save