summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/hardware/rasberrypi/lcd128x64/RPI_lcd128x64putchar.c
diff options
context:
space:
mode:
authorSiddhu89902017-07-04 20:20:46 +0530
committerSiddhu89902017-07-04 20:20:46 +0530
commite9de337a34e123749927039f7011fb30fc96f7c9 (patch)
tree4056424cb082605c759d213cff058c2491b6d43d /2.3-1/src/c/hardware/rasberrypi/lcd128x64/RPI_lcd128x64putchar.c
parent9981dc71e9478fee921175d300d69fd5ba655dc5 (diff)
parente7a1a9bd776aa3ebdd13aea4d4ef838e65acb34c (diff)
downloadScilab2C-e9de337a34e123749927039f7011fb30fc96f7c9.tar.gz
Scilab2C-e9de337a34e123749927039f7011fb30fc96f7c9.tar.bz2
Scilab2C-e9de337a34e123749927039f7011fb30fc96f7c9.zip
Removed wiringPi.h include bug, added amell, bug removed for dct and idct
Diffstat (limited to '2.3-1/src/c/hardware/rasberrypi/lcd128x64/RPI_lcd128x64putchar.c')
-rw-r--r--2.3-1/src/c/hardware/rasberrypi/lcd128x64/RPI_lcd128x64putchar.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/2.3-1/src/c/hardware/rasberrypi/lcd128x64/RPI_lcd128x64putchar.c b/2.3-1/src/c/hardware/rasberrypi/lcd128x64/RPI_lcd128x64putchar.c
new file mode 100644
index 00000000..2dadb448
--- /dev/null
+++ b/2.3-1/src/c/hardware/rasberrypi/lcd128x64/RPI_lcd128x64putchar.c
@@ -0,0 +1,17 @@
+/* Copyright (C) 2017 - IIT Bombay - FOSSEE
+
+ This file must be used under the terms of the CeCILL.
+ This source file is licensed as described in the file COPYING, which
+ you should have received as part of this distribution. The terms
+ are also available at
+ http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+ Author: Jorawar Singh
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+*/
+
+#include "RPIPeripheralLCD128x64.h"
+
+void u8RPI_lcd128x64putchars(uint8 x, uint8 y, uint8 c, uint8 bgCol, uint8 fgCol){
+ lcd128x64putchar(x,y,c,bgCol,fgCol);
+}