/** ################################################################### ** Filename : MeasurementEngine.C ** Project : MeasurementEngine ** Processor : MC9S08MM128VLK ** Version : Driver 01.11 ** Compiler : CodeWarrior HCS08 C Compiler ** Date/Time : 1/13/2010, 3:45 PM ** Abstract : ** Main module. ** This module contains user's application code. ** Settings : ** Contents : ** No public methods ** ** Copyright Freescale Semiconductor, Inc. All Rights Reserved. ** ###################################################################*/ /* MODULE MeasurementEngine */ /* Including needed modules to compile this module/procedure */ #include "Cpu.h" #include "Events.h" #include "ME1.h" #include "InhrPDB1.h" #include "InhrADC1.h" #include "KB1.h" /* Include shared modules, which are used for whole project */ #include "PE_Types.h" #include "PE_Error.h" #include "PE_Const.h" #include "IO_Map.h" /* User includes (#include below this line is not maintained by Processor Expert) */ void main(void) { /* Write your local variable definition here */ /*** Processor Expert internal initialization. DON'T REMOVE THIS CODE!!! ***/ PE_low_level_init(); /*** End of Processor Expert internal initialization. ***/ /* Write your code here */ /* For example: for(;;) { } */ /*** Don't write any code pass this line, or it will be deleted during code generation. ***/ /*** Processor Expert end of main routine. DON'T MODIFY THIS CODE!!! ***/ for(;;){} /*** Processor Expert end of main routine. DON'T WRITE CODE BELOW!!! ***/ } /*** End of main routine. DO NOT MODIFY THIS TEXT!!! ***/ /* END MeasurementEngine */ /* ** ################################################################### ** ** This file was created by Processor Expert 3.08 [04.39] ** for the Freescale HCS08 series of microcontrollers. ** ** ################################################################### */