/****************************************************************************
 Header file for Debugging module for project
 ****************************************************************************/
#ifndef TOMDebug_H
#define TOMDebug_H

#include "SMEvents.h"

/****************************************************************************
 Function
 DebugEvent

 Returns
 Event_t event to force to event checker

 Description
 If a key has been hit, the corresponding event is returned.
 ****************************************************************************/
Event_t DebugEvent (void);

/****************************************************************************
 Function
 DebugPrint

 Parameters
 Event_t current event

 Description
 Prints desired outputs to terminal
 ****************************************************************************/
void DebugPrint (Event_t Event);

#endif