aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2016-02-27 11:54:58 +1000
committerinmarket <andrewh@inmarket.com.au>2016-02-27 11:54:58 +1000
commitc1007a2cc9a5553674e8dbbca8f26addff4bae23 (patch)
treee21d42bcf991686079b66c0fe1adf65c691b05e8 /drivers
parentb8ac430bce7eb8f0bad6a5fea085bf0d54eb065d (diff)
downloaduGFX-c1007a2cc9a5553674e8dbbca8f26addff4bae23.tar.gz
uGFX-c1007a2cc9a5553674e8dbbca8f26addff4bae23.tar.bz2
uGFX-c1007a2cc9a5553674e8dbbca8f26addff4bae23.zip
ED060SC4 driver remove redundant files
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gdisp/ED060SC4/board_ED060SC4_example.h (renamed from drivers/gdisp/ED060SC4/gdisp_lld_board_example.h)0
-rw-r--r--drivers/gdisp/ED060SC4/gdisp_lld_board_template.h83
2 files changed, 0 insertions, 83 deletions
diff --git a/drivers/gdisp/ED060SC4/gdisp_lld_board_example.h b/drivers/gdisp/ED060SC4/board_ED060SC4_example.h
index 6cda606b..6cda606b 100644
--- a/drivers/gdisp/ED060SC4/gdisp_lld_board_example.h
+++ b/drivers/gdisp/ED060SC4/board_ED060SC4_example.h
diff --git a/drivers/gdisp/ED060SC4/gdisp_lld_board_template.h b/drivers/gdisp/ED060SC4/gdisp_lld_board_template.h
deleted file mode 100644
index a45cc208..00000000
--- a/drivers/gdisp/ED060SC4/gdisp_lld_board_template.h
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * This file is subject to the terms of the GFX License. If a copy of
- * the license was not distributed with this file, you can obtain one at:
- *
- * http://ugfx.org/license.html
- */
-
-/* Board interface definitions for ED060SC4 PrimeView E-ink panel.
- *
- * You should implement the following functions to define the interface to
- * the panel on your board.
- */
-
-#ifndef _GDISP_LLD_BOARD_H
-#define _GDISP_LLD_BOARD_H
-
-/* Set up IO pins for the panel connection. */
-static GFXINLINE void init_board(void) {
- #error Unimplemented
-}
-
-/* Delay for display waveforms. Should be an accurate microsecond delay. */
-static void eink_delay(int us)
-{
- #error Unimplemented
-}
-
-/* Turn the E-ink panel Vdd supply (+3.3V) on or off. */
-static GFXINLINE void setpower_vdd(bool_t on) {
- #error Unimplemented
-}
-
-/* Turn the E-ink panel negative supplies (-15V, -20V) on or off. */
-static GFXINLINE void setpower_vneg(bool_t on) {
- #error Unimplemented
-}
-
-/* Turn the E-ink panel positive supplies (-15V, -20V) on or off. */
-static GFXINLINE void setpower_vpos(bool_t on) {
- #error Unimplemented
-}
-
-/* Set the state of the LE (source driver Latch Enable) pin. */
-static GFXINLINE void setpin_le(bool_t on) {
- #error Unimplemented
-}
-
-/* Set the state of the OE (source driver Output Enable) pin. */
-static GFXINLINE void setpin_oe(bool_t on) {
- #error Unimplemented
-}
-
-/* Set the state of the CL (source driver Clock) pin. */
-static GFXINLINE void setpin_cl(bool_t on) {
- #error Unimplemented
-}
-
-/* Set the state of the SPH (source driver Start Pulse Horizontal) pin. */
-static GFXINLINE void setpin_sph(bool_t on) {
- #error Unimplemented
-}
-
-/* Set the state of the D0-D7 (source driver Data) pins. */
-static GFXINLINE void setpins_data(uint8_t value) {
- #error Unimplemented
-}
-
-/* Set the state of the CKV (gate driver Clock Vertical) pin. */
-static GFXINLINE void setpin_ckv(bool_t on) {
- #error Unimplemented
-}
-
-/* Set the state of the GMODE (gate driver Gate Mode) pin. */
-static GFXINLINE void setpin_gmode(bool_t on) {
- #error Unimplemented
-}
-
-/* Set the state of the SPV (gate driver Start Pulse Vertical) pin. */
-static GFXINLINE void setpin_spv(bool_t on) {
- #error Unimplemented
-}
-
-#endif