aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-04-03 13:22:27 +0200
committerJoel Bodenmann <joel@unormal.org>2013-04-03 13:22:27 +0200
commit4871a420573d1a4986eb8a3cee18e4a8c58faee5 (patch)
treea72e99bb674882f0b79fd610ca6582cd15fdf8dc
parent9b1dd95ff75aedd4982a988e3e3d603d33337570 (diff)
downloaduGFX-4871a420573d1a4986eb8a3cee18e4a8c58faee5.tar.gz
uGFX-4871a420573d1a4986eb8a3cee18e4a8c58faee5.tar.bz2
uGFX-4871a420573d1a4986eb8a3cee18e4a8c58faee5.zip
file2c update
-rw-r--r--releases.txt1
-rwxr-xr-xtools/file2c/source/file2cbin10801 -> 0 bytes
-rw-r--r--tools/file2c/source/file2c.c20
3 files changed, 21 insertions, 0 deletions
diff --git a/releases.txt b/releases.txt
index 08b97f92..441bc60a 100644
--- a/releases.txt
+++ b/releases.txt
@@ -19,6 +19,7 @@ FEATURE: Added gdispDrawPoly() and gdispFillConvexPoly()
FEATURE: Added arrow button style to GWIN buttons
FEATURE: Added the ability to specify a custom button drawing routine
FEATURE: SSD1963 rework by username 'fred'
+FEATURE: Added Picture converter tool
*** changes after 1.4 ***
diff --git a/tools/file2c/source/file2c b/tools/file2c/source/file2c
deleted file mode 100755
index 403c7d8f..00000000
--- a/tools/file2c/source/file2c
+++ /dev/null
Binary files differ
diff --git a/tools/file2c/source/file2c.c b/tools/file2c/source/file2c.c
index 10fcc446..d58d6a58 100644
--- a/tools/file2c/source/file2c.c
+++ b/tools/file2c/source/file2c.c
@@ -1,3 +1,23 @@
+/*
+ ChibiOS/GFX - Copyright (C) 2012, 2013
+ Joel Bodenmann aka Tectu <joel@unormal.org>
+
+ This file is part of ChibiOS/GFX.
+
+ ChibiOS/GFX is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ ChibiOS/GFX is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
#include <stdio.h>
#include <fcntl.h>
#include <string.h>