aboutsummaryrefslogtreecommitdiffhomepage
path: root/AT91SAM7S256/Source/d_display.c
diff options
context:
space:
mode:
Diffstat (limited to 'AT91SAM7S256/Source/d_display.c')
-rw-r--r--AT91SAM7S256/Source/d_display.c53
1 files changed, 0 insertions, 53 deletions
diff --git a/AT91SAM7S256/Source/d_display.c b/AT91SAM7S256/Source/d_display.c
deleted file mode 100644
index 99f16c6..0000000
--- a/AT91SAM7S256/Source/d_display.c
+++ /dev/null
@@ -1,53 +0,0 @@
-//
-// Programmer
-//
-// Date init 14.12.2004
-//
-// Reviser $Author:: Dkandlun $
-//
-// Revision date $Date:: 14-11-07 12:40 $
-//
-// Filename $Workfile:: d_display.c $
-//
-// Version $Revision:: 1 $
-//
-// Archive $Archive:: /LMS2006/Sys01/Main_V02/Firmware/Source/d_disp $
-//
-// Platform C
-//
-
-#include "stdconst.h"
-#include "m_sched.h"
-#include "d_display.h"
-#include "d_display.r"
-
-
-void dDisplayInit(void)
-{
- DISPLAYInit;
-}
-
-
-void dDisplayOn(UBYTE On)
-{
- if (On)
- {
- DISPLAYOn;
- }
- else
- {
- DISPLAYOff;
- }
-}
-
-
-UBYTE dDisplayUpdate(UWORD Height,UWORD Width,UBYTE *pImage)
-{
- return (DISPLAYUpdate(Height,Width,pImage));
-}
-
-
-void dDisplayExit(void)
-{
- DISPLAYExit;
-}