Rename myself
[bertos.git] / bertos / algo / ramp.c
index 9a2cc92e446d7da6145811d3b123591ddb8000de..1b5dd9cdf245fa82383e6dce58940c1b18c0c3d3 100644 (file)
@@ -10,7 +10,7 @@
  * \version $Id$
  *
  * \author Simone Zinanni <s.zinanni@develer.com>
- * \author Bernardo Innocenti <bernie@develer.com>
+ * \author Bernie Innocenti <bernie@codewiz.org>
  * \author Giovanni Bajo <rasky@develer.com>
  * \author Daniele Basile <asterix@develer.com>
  *
 
 #include <string.h> // memcpy()
 
-/**
- * Multiply \p a and \p b two integer at 32 bit and extract the high 16 bit word.
- */
-#define FIX_MULT32(a,b)  (((uint64_t)(a)*(uint32_t)(b)) >> 16)
-
 void ramp_compute(struct Ramp *ramp, uint32_t clocksRamp, uint16_t clocksMinWL, uint16_t clocksMaxWL)
 {
        ASSERT(clocksMaxWL >= clocksMinWL);