]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_AT91SAM3U256_IAR/AT91Lib/drivers/lcd/font.c
Start to re-arrange files to include FreeRTOS+ in main download.
[freertos] / Demo / CORTEX_AT91SAM3U256_IAR / AT91Lib / drivers / lcd / font.c
1 /* ----------------------------------------------------------------------------\r
2  *     ATMEL Microcontroller Software Support\r
3  * ----------------------------------------------------------------------------\r
4  * Copyright (c) 2008, Atmel Corporation\r
5  *\r
6  * All rights reserved.\r
7  *\r
8  * Redistribution and use in source and binary forms, with or without\r
9  * modification, are permitted provided that the following conditions are met:\r
10  *\r
11  * - Redistributions of source code must retain the above copyright notice,\r
12  * this list of conditions and the disclaimer below.\r
13  *\r
14  * Atmel's name may not be used to endorse or promote products derived from\r
15  * this software without specific prior written permission.\r
16  *\r
17  * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR\r
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\r
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE\r
20  * DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,\r
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\r
23  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\r
24  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\r
25  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\r
26  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
27  * ----------------------------------------------------------------------------\r
28  */\r
29 \r
30 //------------------------------------------------------------------------------\r
31 //     Headers\r
32 //------------------------------------------------------------------------------\r
33 \r
34 #include "font.h"\r
35 #include "draw.h"\r
36 #include "font10x14.h"\r
37 #include <utility/assert.h>\r
38 \r
39 //------------------------------------------------------------------------------\r
40 //     Local variables\r
41 //------------------------------------------------------------------------------\r
42 \r
43 /// Global variable describing the font being instancied.\r
44 const Font gFont = {10, 14};\r
45 \r
46 //------------------------------------------------------------------------------\r
47 //     Global functions\r
48 //------------------------------------------------------------------------------\r
49 \r
50 //------------------------------------------------------------------------------\r
51 /// Draws an ASCII character on the given LCD buffer.\r
52 /// \param pBuffer  Buffer to write on.\r
53 /// \param x  X-coordinate of character upper-left corner.\r
54 /// \param y  Y-coordinate of character upper-left corner.\r
55 /// \param c  Character to output.\r
56 /// \param color  Character color.\r
57 //------------------------------------------------------------------------------\r
58 void LCDD_DrawChar(\r
59     void *pBuffer,\r
60     unsigned int x,\r
61     unsigned int y,\r
62     char c,\r
63     unsigned int color)\r
64 {\r
65     unsigned int row, col;\r
66 \r
67     SANITY_CHECK((c >= 0x20) && (c <= 0x7F));\r
68 \r
69     for (col = 0; col < 10; col++) {\r
70 \r
71         for (row = 0; row < 8; row++) {\r
72 \r
73             if ((pCharset10x14[((c - 0x20) * 20) + col * 2] >> (7 - row)) & 0x1) {\r
74 \r
75                 LCDD_DrawPixel(pBuffer, x+col, y+row, color);\r
76             }\r
77         }\r
78         for (row = 0; row < 6; row++) {\r
79 \r
80             if ((pCharset10x14[((c - 0x20) * 20) + col * 2 + 1] >> (7 - row)) & 0x1) {\r
81 \r
82                 LCDD_DrawPixel(pBuffer, x+col, y+row+8, color);\r
83             }\r
84         }\r
85     }\r
86 }\r