Silent unused variable warning (only for test).
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 10 Jun 2008 17:30:48 +0000 (17:30 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 10 Jun 2008 17:30:48 +0000 (17:30 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1435 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/avr/drv/stepper_avr.h
bertos/hw/hw_phase.h
bertos/hw/hw_sensor.h

index 0173e4e9ca302ca00b60490f4e94bf536352a1bc..840734e78306a3c6e7d3a216a147e76ec0ee6604 100644 (file)
@@ -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);
index f1cf887e07f895848e9f878025144a2521336ea2..62228ceee857d74a16a52be25221d43380775de9 100644 (file)
@@ -33,7 +33,7 @@
  * \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;
 }
 
 
index c7e531259430ca18ca64475a18a32cf965d55fb8..113e468f1d50069f5e4c3d329f6f2f02be431378 100644 (file)
 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;
 }