INLINE void stepper_tc_irq_enable(struct TimerCounter *timer)
{
/* put here code to enable timer irq */
+
+ //Only for test remove when implement this function
+ (void)timer;
}
INLINE void stepper_tc_irq_disable(struct TimerCounter *timer)
{
/* put here code to disable timer irq */
+
+ //Only for test remove when implement this function
+ (void)timer;
}
/**
INLINE void stepper_tc_setDelay(struct TimerCounter *timer, stepper_time_t delay)
{
/* put here code to set the delay for next irq */
+
+ //Only for test remove when implement this function
+ (void)timer;
+ (void)delay;
}
INLINE void stepper_tc_resetTimer(struct TimerCounter *timer)
{
/* put here code to reset the timer */
+
+ //Only for test remove when implement this function
+ (void)timer;
}
/**
INLINE void FAST_FUNC stepper_tc_doPulse(struct TimerCounter *timer)
{
/* put here code to generate a pulse */
+
+ //Only for test remove when implement this function
+ (void)timer;
}
/**
INLINE void FAST_FUNC stepper_tc_skipPulse(struct TimerCounter *timer)
{
/* put here code to skip a pulse */
+
+ //Only for test remove when implement this function
+ (void)timer;
}
void stepper_tc_setup(int index, stepper_isr_t callback, struct Stepper *motor);
* \brief Phase control hardware-specific definitions
*
* \version $Id$
- *
+ *
* \author Francesco Sacchi <batt@develer.com>
*/
INLINE void TRIAC_OFF(TriacDev i)
{
/* Implement me! */
+
+ //Only for test remove when implement this function
+ (void)i;
}
INLINE void TRIAC_ON(TriacDev i)
{
/* Implement me! */
+
+ //Only for test remove when implement this function
+ (void)i;
}
INLINE bool hw_home_sensor_read(int sensor)
{
/* Implement me! */
-
+
+ //Only for test remove when implement this function
+ (void)sensor;
return 0;
}
INLINE void hw_home_sensor_set_inverted(int sensor, bool inverted)
{
/* Implement me! */
+
+ //Only for test remove when implement this function
+ (void)sensor;
+ (void)inverted;
}
INLINE bool hw_level_sensor_read(int sensor)
{
/* Implement me! */
-
+
+ //Only for test remove when implement this function
+ (void)sensor;
return 0;
}
INLINE void hw_level_sensor_set_inverted(int sensor, bool inverted)
{
/* Implement me! */
+
+ //Only for test remove when implement this function
+ (void)sensor;
+ (void)inverted;
}
INLINE bool bld_hw_sensor_read(int sensor)
{
/* Implement me! */
-
+
+ //Only for test remove when implement this function
+ (void)sensor;
return 0;
}