FreeCalypso > hg > fc-tourmaline
comparison src/cs/drivers/drv_app/r2d/r2d_lcds.c @ 0:4e78acac3d88
src/{condat,cs,gpf,nucleus}: import from Selenite
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 16 Oct 2020 06:23:26 +0000 |
parents | |
children | c905daaff834 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4e78acac3d88 |
---|---|
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 #if (R2D_EMBEDDED_LCD == R2D_MIRRORED_LCD) | |
63 #include "lcds/Simple/R2D_simple_lcd_i.c" | |
64 #endif | |
65 | |
66 #if (R2D_EMBEDDED_LCD == R2D_CUSTOMER_LCD) | |
67 #include "lcds/Customer/R2D_customer_lcd_i.c" | |
68 #endif | |
69 | |
70 #if (R2D_EMBEDDED_LCD == R2D_HORIZONTAL_LCD) | |
71 #include "lcds/Horizontal/R2D_horizontal_lcd_i.c" | |
72 #endif | |
73 | |
74 #if (R2D_EMBEDDED_LCD == R2D_BOARD_COLOR_LCD) | |
75 #include "lcds/ColorBoard/R2D_board_color_lcd_i.c" | |
76 #endif | |
77 | |
78 #if (R2D_EMBEDDED_LCD == R2D_BOARD_DSAMPLE) | |
79 #include "lcds/D_Sample/R2D_board_dsample_lcd_i.c" | |
80 #endif | |
81 | |
82 #if (R2D_EMBEDDED_LCD == R2D_BOARD_BW_DSAMPLE) | |
83 #include "lcds/BW_D_Sample/R2D_board_bw_dsample_lcd_i.c" | |
84 #endif |