comparison src/cs/drivers/drv_app/r2d/r2d_lcds.c @ 0:b6a5e36de839

src/cs: initial import from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 15 Jul 2018 04:39:26 +0000
parents
children fdecfb3bd860
comparison
equal deleted inserted replaced
-1:000000000000 0:b6a5e36de839
1 /**
2
3 @file: r2d_lcds.c
4
5 @author Christophe Favergeon
6
7 @version 0.5
8
9 Purpose: Include LCDs dependent definitions (the LCD APIs)
10
11 */
12
13 /*
14
15 Date Modification
16 ------------------------------------
17 06/02/2001 Create
18 10/18/2001 Version 0.5 for first integration with Riviera database
19
20
21 (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved
22 */
23
24 #include "rv/general.h"
25 #include "rvf/rvf_api.h"
26 #include "r2d/r2d_config.h"
27 #include "r2d/r2d.h"
28 #include "r2d/r2d_i.h"
29 #include "r2d/r2d_independance_layer.h"
30 #if (R2D_DEBUG == R2D_ON)
31 #include <stdio.h>
32 #endif
33
34 #ifdef _WINDOWS
35 #include "Windows.h"
36 #endif
37
38 #ifndef _WINDOWS
39 #include "config/board.cfg"
40 #endif
41
42 //////////////////////////////////
43 //
44 // Include LCD dependent C code
45 //
46 #if (R2D_EMBEDDED_LCD == R2D_SIMPLE_LCD)
47 #include "lcds/simple/R2D_simple_lcd_i.c"
48 #endif
49
50 #if (R2D_EMBEDDED_LCD == R2D_PC_COLOR_LCD)
51 #include "lcds/colorpc/R2D_pc_color_lcd_i.c"
52 #endif
53
54 #if (R2D_EMBEDDED_LCD == R2D_PC_CSAMPLE)
55 #include "lcds/pc_csample/R2D_pc_csample_lcd_i.c"
56 #endif
57
58 #if (R2D_EMBEDDED_LCD == R2D_PC_DSAMPLE)
59 #include "lcds/pc_dsample/R2D_pc_dsample_lcd_i.c"
60 #endif
61
62
63 #if (R2D_EMBEDDED_LCD == R2D_MIRRORED_LCD)
64 #include "lcds/simple/R2D_simple_lcd_i.c"
65 #endif
66
67 #if (R2D_EMBEDDED_LCD == R2D_CUSTOMER_LCD)
68 #include "lcds/customer/R2D_customer_lcd_i.c"
69 #endif
70
71 #if (R2D_EMBEDDED_LCD == R2D_HORIZONTAL_LCD)
72 #include "lcds/horizontal/R2D_horizontal_lcd_i.c"
73 #endif
74
75 #if (R2D_EMBEDDED_LCD == R2D_BOARD_COLOR_LCD)
76 #include "lcds/colorboard/R2D_board_color_lcd_i.c"
77 #endif
78
79 #if (R2D_EMBEDDED_LCD == R2D_BOARD_DSAMPLE)
80 #include "lcds/d_sample/R2D_board_dsample_lcd_i.c"
81 #endif
82
83 #if (R2D_EMBEDDED_LCD == R2D_BOARD_BW_DSAMPLE)
84 #include "lcds/bw_d_sample/R2D_board_bw_dsample_lcd_i.c"
85 #endif