diff src/cs/drivers/drv_app/r2d/r2d_lcds.c @ 112:fdecfb3bd860

.../drv_app/r2d/r2d_*.c: LCD include case fixes from Magnetite R2D is not used in Selenite, but we strive to keep the two source trees in sync as much as possible to reduce the diffs.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 13 Oct 2018 16:56:22 +0000
parents b6a5e36de839
children
line wrap: on
line diff
--- a/src/cs/drivers/drv_app/r2d/r2d_lcds.c	Sat Oct 13 16:32:07 2018 +0000
+++ b/src/cs/drivers/drv_app/r2d/r2d_lcds.c	Sat Oct 13 16:56:22 2018 +0000
@@ -44,42 +44,41 @@
 // Include LCD dependent C code
 //
 #if (R2D_EMBEDDED_LCD == R2D_SIMPLE_LCD)
-  #include "lcds/simple/R2D_simple_lcd_i.c"
+  #include "lcds/Simple/R2D_simple_lcd_i.c"
 #endif
 
 #if (R2D_EMBEDDED_LCD == R2D_PC_COLOR_LCD)
-  #include "lcds/colorpc/R2D_pc_color_lcd_i.c"
+  #include "lcds/ColorPC/R2D_pc_color_lcd_i.c"
 #endif
 
 #if (R2D_EMBEDDED_LCD == R2D_PC_CSAMPLE)
-#include "lcds/pc_csample/R2D_pc_csample_lcd_i.c"
+  #include "lcds/PC_CSAMPLE/R2D_pc_csample_lcd_i.c"
 #endif
 
 #if (R2D_EMBEDDED_LCD == R2D_PC_DSAMPLE)
-#include "lcds/pc_dsample/R2D_pc_dsample_lcd_i.c"
+  #include "lcds/PC_DSAMPLE/R2D_pc_dsample_lcd_i.c"
 #endif
 
-
 #if (R2D_EMBEDDED_LCD == R2D_MIRRORED_LCD)
-  #include "lcds/simple/R2D_simple_lcd_i.c"
+  #include "lcds/Simple/R2D_simple_lcd_i.c"
 #endif
 
 #if (R2D_EMBEDDED_LCD == R2D_CUSTOMER_LCD)
-  #include "lcds/customer/R2D_customer_lcd_i.c"
+  #include "lcds/Customer/R2D_customer_lcd_i.c"
 #endif
 
 #if (R2D_EMBEDDED_LCD == R2D_HORIZONTAL_LCD)
-  #include "lcds/horizontal/R2D_horizontal_lcd_i.c"
+  #include "lcds/Horizontal/R2D_horizontal_lcd_i.c"
 #endif
 
 #if (R2D_EMBEDDED_LCD == R2D_BOARD_COLOR_LCD)
-  #include "lcds/colorboard/R2D_board_color_lcd_i.c"
+  #include "lcds/ColorBoard/R2D_board_color_lcd_i.c"
 #endif
 
 #if (R2D_EMBEDDED_LCD == R2D_BOARD_DSAMPLE)
-#include "lcds/d_sample/R2D_board_dsample_lcd_i.c"
+  #include "lcds/D_Sample/R2D_board_dsample_lcd_i.c"
 #endif
 
 #if (R2D_EMBEDDED_LCD == R2D_BOARD_BW_DSAMPLE)
-#include "lcds/bw_d_sample/R2D_board_bw_dsample_lcd_i.c"
-#endif
\ No newline at end of file
+  #include "lcds/BW_D_Sample/R2D_board_bw_dsample_lcd_i.c"
+#endif