aboutsummaryrefslogtreecommitdiffstats
path: root/boards/addons/gdisp/board_SSD1331_tinyscreen_arduino.h
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-06-23 13:02:07 +1000
committerinmarket <andrewh@inmarket.com.au>2018-06-23 13:02:07 +1000
commit41271d632b74f5cf47c30d3b699eb6b2786f2136 (patch)
tree78bcb729c6d6177ca598f28908fefd186c50e9b6 /boards/addons/gdisp/board_SSD1331_tinyscreen_arduino.h
parent3b97fb798e96514057bcf17263c1e5dbdcd7da26 (diff)
downloaduGFX-41271d632b74f5cf47c30d3b699eb6b2786f2136.tar.gz
uGFX-41271d632b74f5cf47c30d3b699eb6b2786f2136.tar.bz2
uGFX-41271d632b74f5cf47c30d3b699eb6b2786f2136.zip
Added new type definitions - moving towards V3.0
Diffstat (limited to 'boards/addons/gdisp/board_SSD1331_tinyscreen_arduino.h')
-rw-r--r--boards/addons/gdisp/board_SSD1331_tinyscreen_arduino.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/boards/addons/gdisp/board_SSD1331_tinyscreen_arduino.h b/boards/addons/gdisp/board_SSD1331_tinyscreen_arduino.h
deleted file mode 100644
index 17b125c8..00000000
--- a/boards/addons/gdisp/board_SSD1331_tinyscreen_arduino.h
+++ /dev/null
@@ -1,34 +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
- */
-
-#ifndef _GDISP_LLD_BOARD_H
-#define _GDISP_LLD_BOARD_H
-
-#define init_board(g) SSD1331_init_board()
-#define post_init_board(g)
-#define setpin_reset(g, state) SSD1331_setpin_reset(state)
-#define acquire_bus(g) SSD1331_aquirebus()
-#define release_bus(g) SSD1331_releasebus()
-#define write_cmd(g, cmd) SSD1331_write_cmd(cmd)
-#define write_data(g, data) SSD1331_write_data(data)
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-void SSD1331_init_board(void);
-void SSD1331_setpin_reset(int state);
-void SSD1331_aquirebus(void);
-void SSD1331_releasebus(void);
-void SSD1331_write_cmd(uint8_t cmd);
-void SSD1331_write_data(uint8_t data);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* _GDISP_LLD_BOARD_H */