aboutsummaryrefslogtreecommitdiffstats
path: root/boards/addons/gdisp/board_SSD1351_teensy.h
blob: 92a8ba4fa6758e411721a465cb3bec6282defe6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * 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

#ifdef __cplusplus
extern "C" {
#endif // __cplusplus

extern void ssd1351_init_board(void);
extern void ssd1351_setpin_reset(int state);
extern void ssd1351_acquire_bus(void);
extern void ssd1351_release_bus(void);
extern void ssd1351_write_cmd(unsigned char index);
extern void ssd1351_write_data(unsigned char data);

#define init_board(g)			ssd1351_init_board()
#define post_init_board(g)
#define setpin_reset(g, s)		ssd1351_setpin_reset(s)
#define set_backlight(g, p)
#define acquire_bus(g)			ssd1351_acquire_bus()
#define release_bus(g)			ssd1351_release_bus()
#define write_cmd(g, i)			ssd1351_write_cmd(i)
#define write_data(g, d)		ssd1351_write_cmd(d)

#ifdef __cplusplus
}
#endif // __cplusplus

#endif /* _GDISP_LLD_BOARD_H */