Manual calling of Init

Add the call of the Init method into the user's code, for example in main module.

Enter the following line into the main module file:

  Init1_Init();

  

Put the Init method right below the PE_low_level_init call.

  void main(void)
   {

     /*** Processor Expert internal initialization. ***/

     PE_low_level_init();

    /*** End of Processor Expert internal initialization. ***/

  Init1_Init();
  
     for(;;) {}

   }