forked from samyk/opensesame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
display.h
123 lines (99 loc) · 3.03 KB
/
display.h
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
* IM-Me display functions
*
* Copyright 2010 Dave - http://daveshacks.blogspot.com/2010/01/im-me-lcd-interface-hacked.html
* Copyright 2010 Michael Ossmann
* Copyright 2015-2020 Samy Kamkar
*
* This program 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 2, or (at your option)
* any later version.
*
* This program 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#include "types.h"
// sdcc 3.7.0+ uses int putchar
#if (SDCC_VERSION_HI == 3 && SDCC_VERSION_LO >= 7) || (SDCC_VERSION_HI >= 4)
#define PUTCHAR_INT
#define PUTCHAR_TYPE int
#else
#define PUTCHAR_TYPE void
#endif
static volatile __bit reverseTxt = 0;
#define LOW 0
#define HIGH 1
#define WIDTH 132
#define HEIGHT 65
#define DISPLAY_ON 0xaf
#define DISPLAY_OFF 0xae
#define SET_ROW 0xb0
#define SET_COL_LO 0x00
#define SET_COL_HI 0x10
#define SET_START_LINE 0x40
#define ADC_NORMAL 0xa0
#define ADC_REVERSE 0xa1
#define DISPLAY_NORMAL 0xa6
#define DISPLAY_REVERSE 0xa7
#define ALL_POINTS_NORMAL 0xa4
#define ALL_POINTS_ON 0xa5
#define BIAS_RATIO_9 0xa2
#define BIAS_RATIO_7 0xa3
#define READ_MODIFY_WRITE 0xe0
#define END_RMW 0xee
#define RESET 0xe2
//missing common output mode select
#define POWER_SUPPLY_OFF 0x28
#define POWER_SUPPLY_ON 0x2f
#define SET_REG_RESISTOR 0x24
#define VOLUME_MODE_SET 0x81
#define STATIC_INDIC_OFF 0xac
#define STATIC_INDIC_ON 0xad
//missing booster ratio select
#define NOP 0xe3
#define OUTPUT_STATUS_SEL 0xc0
#define TEST_RESET 0xf0
#define OSC_FREQ_314 0xe4
#define OSC_FREQ_263 0xe5
#define NORMAL_DISPLAY 0x82
#define PARTIAL_DISPLAY 0x83
#define DC_DC_CLOCK_SET 0xe6
void sleepMillis(int ms);
void xtalClock();
// IO Port Definitions:
#define A0 P0_2
#define SSN P0_4
#define LCDRst P1_1
#define LED_RED P2_3
#define LED_GREEN P2_4
// plus SPI ports driven from USART0 are:
// MOSI P0_3
// SCK P0_5
void setIOPorts();
void configureSPI();
void tx(unsigned char ch);
void txData(unsigned char ch);
void txCtl(unsigned char ch);
void LCDReset(void);
void LCDPowerSave();
void setCursor(unsigned char row, unsigned char col);
void setDisplayStart(unsigned char start);
void setNormalReverse(unsigned char normal);
void printrlc(u8 line, u8 col, char *str);
void printrl(u8 line, char *str);
void printlc(u8 line, u8 col, char *str);
void printl(u8 line, char *str);
void print(u8 line, char *str, ...);
void clear();
void UART_Init();
#ifndef LOCAL
PUTCHAR_TYPE putchar(char c);
#endif