X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Favr%2Fdrv%2Fstepper_avr.h;h=840734e78306a3c6e7d3a216a147e76ec0ee6604;hb=32d1445272120a254d77ce8d1af1f527da7a2c17;hp=0173e4e9ca302ca00b60490f4e94bf536352a1bc;hpb=52fa40dca7b8505cc239ff7b176b25d062b74b49;p=bertos.git diff --git a/bertos/cpu/avr/drv/stepper_avr.h b/bertos/cpu/avr/drv/stepper_avr.h index 0173e4e9..840734e7 100644 --- a/bertos/cpu/avr/drv/stepper_avr.h +++ b/bertos/cpu/avr/drv/stepper_avr.h @@ -72,6 +72,9 @@ typedef struct TimerCounter 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; } @@ -81,6 +84,9 @@ INLINE void stepper_tc_irq_enable(struct TimerCounter *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; } /** @@ -89,6 +95,10 @@ INLINE void stepper_tc_irq_disable(struct TimerCounter *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; } @@ -98,6 +108,9 @@ INLINE void stepper_tc_setDelay(struct TimerCounter *timer, stepper_time_t dela 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; } /** @@ -106,6 +119,9 @@ INLINE void stepper_tc_resetTimer(struct TimerCounter *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; } /** @@ -114,6 +130,9 @@ INLINE void FAST_FUNC stepper_tc_doPulse(struct TimerCounter *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);