summaryrefslogtreecommitdiffstats
path: root/Graphic_Equalizer/src/main.hcc
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2004-10-13 13:34:18 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2004-10-13 13:34:18 (GMT)
commit0b278572eee35e5101ed757015cc0a957af87629 (patch)
tree8c00efd13c0f8a5131b54949a724672850b0fe05 /Graphic_Equalizer/src/main.hcc
parente3291712017e6cc0300f616fe4a74438e1791cc0 (diff)
downloadTASS-0b278572eee35e5101ed757015cc0a957af87629.zip
TASS-0b278572eee35e5101ed757015cc0a957af87629.tar.gz
TASS-0b278572eee35e5101ed757015cc0a957af87629.tar.bz2
Diffstat (limited to 'Graphic_Equalizer/src/main.hcc')
-rw-r--r--Graphic_Equalizer/src/main.hcc81
1 files changed, 0 insertions, 81 deletions
diff --git a/Graphic_Equalizer/src/main.hcc b/Graphic_Equalizer/src/main.hcc
deleted file mode 100644
index bbf8ee6..0000000
--- a/Graphic_Equalizer/src/main.hcc
+++ /dev/null
@@ -1,81 +0,0 @@
-/*! \file main.hcc
- *
- * \section generic Message build up information and more
- *
- * \section project Project information.
- * Project Graphic Equalizer\n
- * \author O.M. Schinagl
- * \date 20041011
- * \version 0.1
- *
- * \section copyright Copyright
- * Copyright ©2004 Koninklijke Philips Electronics N.V. All rights reserved
- *
- * \section history Change history
- * 20041011: O.M. Schinagl\n Initial version
- *
- *****************************************************************************/
-
-/******** Application Defines *********/
-
-/*
- * Set the Clock rate for this domain. 25.175 Mhz is required for the TFT.
- */
-#define PAL_TARGET_CLOCK_RATE 25175000
-
-/******** System Includes *************/
-
-/******** Application Includes ********/
-
-#include "mousedriver.hch"
-
-
-
-/*
- * Request Clockrate. Approximated ClockRate is compiler assigned.
- */
-static macro expr ClockRate = PAL_ACTUAL_CLOCK_RATE;
-
-
-
-/*! \fn void main(void);
- * \brief
- *
- * \param void
- *
- * \return void
- * \retval void
- */
-void main(void) {
- /* Set VideoOut Pointer */
- macro expr VideoOut = PalVideoOutOptimalCT(ClockRate);
-
- /*
- * Check library versions and Request VideoOutput.
- */
- PalVersionRequire(1, 0);
- PalVideoOutRequire(1);
-
- /*
- * Run The Following main tasks in parallel.
- */
- par {
- /*
- * Primary task is to 'Run' several hardware
- * VideoOutput needs to be in sync with the touchscreen and
- * need to run in sync.
- */
- /*display_run(VideoOut, ClockRate);*/
- mouse_run(ClockRate);
-
- /* Parallel to our Primary tasks we run the application. */
- seq {
- /*display_init(ClockRate);*/
- par {
- mouse_main();
- /*display_main();*/
- }
- }
- }
-
-} /* --- main() --- */