Subversion Repositories Projects

Rev

Rev 346 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
331 cascade 1
/****************************************************************************
2
 *   Copyright (C) 2009 by Claas Anders "CaScAdE" Rathje                    *
3
 *   admiralcascade@gmail.com                                               *
4
 *   Project-URL: http://www.mylifesucks.de/oss/c-osd/                      *
5
 *                                                                          *
6
 *   This program is free software; you can redistribute it and/or modify   *
7
 *   it under the terms of the GNU General Public License as published by   *
8
 *   the Free Software Foundation; either version 2 of the License.         *
9
 *                                                                          *
10
 *   This program is distributed in the hope that it will be useful,        *
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of         *
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
13
 *   GNU General Public License for more details.                           *
14
 *                                                                          *
15
 *   You should have received a copy of the GNU General Public License      *
16
 *   along with this program; if not, write to the                          *
17
 *   Free Software Foundation, Inc.,                                        *
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.              *
19
 ****************************************************************************/
20
 
21
/* ##########################################################################
22
 * Software SPI to communicate with MAX7456
23
 * ##########################################################################*/
24
#define MAX_CS_HIGH             PORTA |=  (1 << PA1);
25
#define MAX_CS_LOW              PORTA &= ~(1 << PA1);
26
#define MAX_SDIN_HIGH           PORTA |=  (1 << PA2);
27
#define MAX_SDIN_LOW            PORTA &= ~(1 << PA2);
28
#define MAX_SCLK_HIGH           PORTA |=  (1 << PA3);
29
#define MAX_SCLK_LOW            PORTA &= ~(1 << PA3);
30
#define MAX_RESET_HIGH          PORTA |=  (1 << PA5);
31
#define MAX_RESET_LOW           PORTA &= ~(1 << PA5);
32
 
33
 
34
/* ##########################################################################
35
 * MAX7456 SPI & Display stuff
36
 * ##########################################################################*/
37
 
38
/**
39
 * Send a byte through SPI
40
 */
41
void spi_send(uint8_t);
42
 
43
/**
44
 *  Send <byte> to <address> of MAX7456
45
 */
46
void spi_send_byte(uint8_t, uint8_t);
47
 
48
/**
49
 *  write a <character> to <address> of MAX7456 display memory
50
 */
51
void write_char(uint16_t, char);
52
 
53
/**
54
 *  write a character <attribute> to <address> of MAX7456 display memory
55
 */
56
void write_char_att(uint16_t, char);
57
/**
58
 *  write a <character> at <x>/<y> to MAX7456 display memory
59
 */
60
void write_char_xy(uint8_t, uint8_t, char);
61
/**
62
 *  write a  character <attribute> at <x>/<y> to MAX7456 display memory
63
 */
64
void write_char_att_xy(uint8_t, uint8_t, char attribute);
65
 
66
/**
67
 *  clear display by writing blank characters all over it
68
 */
69
void clear(void);
70
 
71
/**
72
 *  write an ascii <character> to <address> of MAX7456 display memory
73
 */
74
void write_ascii_char(uint16_t, char);
75
 
76
/**
77
 *  write an ascii <string> at <x>/<y> to MAX7456 display memory
78
 */
79
void write_ascii_string(uint8_t, uint8_t, char*);
80
 
81
/**
82
 *  Write only the last three digits of a <number> at <x>/<y> to MAX7456
83
 *  display memory. takes full 16bit numbers as well for stuff
84
 *  like compass only taking three characters (values <= 999)
85
 */
86
void write_3digit_number_u(uint8_t, uint8_t, uint16_t);
87
 
88
/**
89
 *  Write only the last two digits of a number at <x>/<y> to MAX7456
90
 *  display memory. takes full 16bit numbers as well for stuff
91
 *  like seconds only taking two characters (values <= 99)
92
 *  Since this is used for seconds only and it looks better, there
93
 *  is a trading 0 attached
94
 */
95
void write_2digit_number_u(uint8_t, uint8_t, uint16_t);
96
/**
97
 *  write a unsigned number as /10th at <x>/<y> to MAX7456 display memory
98
 */
99
void write_number_u_10th(uint8_t, uint8_t, uint16_t);
100
 
101
/**
102
 *  write a unsigned number at <x>/<y> to MAX7456 display memory
103
 */
104
void write_number_u(uint8_t, uint8_t, uint16_t);
105
 
106
/**
107
 *  write a signed number at <x>/<y> to MAX7456 display memory
108
 */
109
void write_number_s(uint8_t, uint8_t, int16_t);
110
 
111
/**
112
 *  write <seconds> as human readable time at <x>/<y> to MAX7456 display mem
113
 */
114
void write_time(uint8_t, uint8_t, uint16_t);
115
 
116
/**
117
 * for testing write all chars to screen
118
 */
119
void write_all_chars();
120
 
121
/**
122
 * let the MAX7456 learn a new character at <number>
123
 * with <data>.
124
 */
125
void learn_char(uint8_t, unsigned char*);