Step
Step
#include "Step.h"
/*******************************************************************************
* Function Name: Step_Write
********************************************************************************
*
* Summary:
* Write a byte to the Control Register.
*
* Parameters:
* control: The value to be assigned to the Control Register.
*
* Return:
* None.
*
*******************************************************************************/
void Step_Write(uint8 control)
{
Step_Control = control;
}
/*******************************************************************************
* Function Name: Step_Read
********************************************************************************
*
* Summary:
* Reads the current value assigned to the Control Register.
*
* Parameters:
* None.
*
* Return:
* Returns the current value in the Control Register.
*
*******************************************************************************/
uint8 Step_Read(void)
{
return Step_Control;
}
/* [] END OF FILE */