/****************************************************************************

 Module

   CrewService.c


 Revision

   1.0.1


 Description

   This is a template file for implementing a simple service under the

   Gen2 Events and Services Framework.


 Notes


 History

 When           Who     What/Why

 -------------- ---     --------

 01/16/12 09:58 jec      began conversion from TemplateFSM.c

****************************************************************************/

/*----------------------------- Include Files -----------------------------*/

/* include header files for this state machine as well as any machines at the

   next lower level in the hierarchy that are sub-machines to this machine

*/

//This Module

#include "DebouncingService.h"


#include "ES_Configure.h"

#include "ES_Framework.h"

#include "dbprintf.h"

#include "CrewService.h"

#include "LEDService.h"


/*----------------------------- Module Defines ----------------------------*/

#define ONE_SEC 1000

#define DEBOUNCING_SEC (ONE_SEC /10)

/*---------------------------- Module Functions ---------------------------*/

/* prototypes for private functions for this service.They should be functions

   relevant to the behavior of this service

*/


/*---------------------------- Module Variables ---------------------------*/

// with the introduction of Gen2, we need a module level Priority variable

static uint8_t MyPriority;

DebouncingState_t CurrentLeftState = Debounce_Waiting;

DebouncingState_t CurrentRightState = Debounce_Waiting;

DebouncingState_t NextRightState = Debounce_Waiting;

DebouncingState_t NextLeftState = Debounce_Waiting;


/*------------------------------ Module Code ------------------------------*/

/****************************************************************************

 Function

     InitDebouncingService


 Parameters

     uint8_t : the priorty of this service


 Returns

     bool, false if error in initialization, true otherwise


 Description

     Saves away the priority, and does any

     other required initialization for this service

 Notes


 Author

     J. Edward Carryer, 01/16/12, 10:00

****************************************************************************/

bool InitDebouncingService(uint8_t Priority)

{

  ES_Event_t ThisEvent;


  MyPriority = Priority;


  /********************************************

   in here you write your initialization code

   *******************************************/

  // post the initial transition event

  // ThisEvent.EventType = ES_INIT;

  ThisEvent.EventType = ES_INIT;

  if (ES_PostToService(MyPriority, ThisEvent) == true)

  {

    return true;

  }

  else

  {

    return false;

  }

}


/****************************************************************************

 Function

     PostDebouncingService


 Parameters

     EF_Event_t ThisEvent ,the event to post to the queue


 Returns

     bool false if the Enqueue operation failed, true otherwise


 Description

     Posts an event to this state machine's queue

 Notes


 Author

     J. Edward Carryer, 10/23/11, 19:25

****************************************************************************/

bool PostDebouncingService(ES_Event_t ThisEvent)

{

  return ES_PostToService(MyPriority, ThisEvent);

}


/****************************************************************************

 Function

    RunDebouncingService


 Parameters

   ES_Event_t : the event to process


 Returns

   ES_Event, ES_NO_EVENT if no error ES_ERROR otherwise


 Description

   add your description here

 Notes


 Author

   J. Edward Carryer, 01/15/12, 15:23

****************************************************************************/

ES_Event_t RunDebouncingService(ES_Event_t ThisEvent)

{

  ES_Event_t ReturnEvent;

  ReturnEvent.EventType = ES_NO_EVENT; // assume no errors

  ES_Event_t RightDBEvent;

  ES_Event_t LeftDBEvent;  


  switch (CurrentRightState)

  {

    case Debounce_Waiting:

    {

      if (ThisEvent.EventType == RAW_RIGHT_DOWN)

      {

        NextRightState = Raw_Right_Down;

        ES_Timer_InitTimer(RIGHT_DEBOUNCING_TIMER, DEBOUNCING_SEC);

      }

      else if (ThisEvent.EventType == RAW_RIGHT_UP)

      {

        NextRightState = Raw_Right_Up;

        ES_Timer_InitTimer(RIGHT_DEBOUNCING_TIMER, DEBOUNCING_SEC);

      }

    }

    break;


    case Raw_Right_Down:

    {

      if (ThisEvent.EventType == RAW_RIGHT_UP)

      {

        NextRightState = Debounce_Waiting;

      }

      else if (ThisEvent.EventType == ES_TIMEOUT)

      {

        if (ThisEvent.EventParam == RIGHT_DEBOUNCING_TIMER)

        {

          NextRightState = Debounce_Waiting;

          RightDBEvent.EventType = RIGHT_DOWN;

          PostCrewService(RightDBEvent);

          PostLEDService(RightDBEvent);

        }

      }

    }

    break;


    case Raw_Right_Up:

    {

      if (ThisEvent.EventType == RAW_RIGHT_DOWN)

      {

        NextRightState = Debounce_Waiting;

      }

      else if (ThisEvent.EventType == ES_TIMEOUT)

      {

        if (ThisEvent.EventParam == RIGHT_DEBOUNCING_TIMER)

        {

          NextRightState = Debounce_Waiting;

          RightDBEvent.EventType = RIGHT_UP;

          PostCrewService(RightDBEvent);

        }

      }

    }

    break;

 

    default:

    break;

  }


  switch (CurrentLeftState)

  {

  case Debounce_Waiting:

    {

      if (ThisEvent.EventType == RAW_LEFT_DOWN)

      {

        NextLeftState = Raw_Left_Down;

        ES_Timer_InitTimer(LEFT_DEBOUNCING_TIMER, DEBOUNCING_SEC);

      }

      else if (ThisEvent.EventType == RAW_LEFT_UP)

      {

        NextLeftState = Raw_Left_Up;

        ES_Timer_InitTimer(LEFT_DEBOUNCING_TIMER, DEBOUNCING_SEC);

      }

    }

    break;


    case Raw_Left_Down:

    {

      if (ThisEvent.EventType == RAW_LEFT_UP)

      {

        NextLeftState = Debounce_Waiting;

      }

      else if (ThisEvent.EventType == ES_TIMEOUT)

      {

        if (ThisEvent.EventParam == LEFT_DEBOUNCING_TIMER)

        {

          NextLeftState = Debounce_Waiting;

          LeftDBEvent.EventType = LEFT_DOWN;

          PostCrewService(LeftDBEvent);

          PostLEDService(LeftDBEvent);

        }

      }

    }

    break;


    case Raw_Left_Up:

    {

      if (ThisEvent.EventType == RAW_LEFT_DOWN)

      {

        NextLeftState = Debounce_Waiting;

      }

      else if (ThisEvent.EventType == ES_TIMEOUT)

      {

        if (ThisEvent.EventParam == LEFT_DEBOUNCING_TIMER)

        {

          NextLeftState = Debounce_Waiting;

          LeftDBEvent.EventType = LEFT_UP;

          PostCrewService(LeftDBEvent);

          PostLEDService(LeftDBEvent);

        }

      }

    }

    break;

 

    default:

    break;

  }


  CurrentRightState = NextRightState;

  CurrentLeftState = NextLeftState;


  return ReturnEvent;

}


/***************************************************************************

 private functions

 ***************************************************************************/



/*------------------------------- Footnotes -------------------------------*/

/*------------------------------ End of file ------------------------------*/