first cut at turnon scripts for EasyTimer v2
[fw/altos] / ao-tools / lib / cc-period.c
index 2a4e59521907a36d621199c2e1a6a6e19d5f8072..fb1c3ccd0565dcd66ae7d227c58730816035676a 100644 (file)
@@ -3,7 +3,8 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -35,7 +36,7 @@ cc_period_make(struct cc_timedata *td, double start_time, double stop_time)
        j = 0;
        for (i = 0; i < pd->num; i++) {
                t = start_time + i * pd->step;
-               while (j < td->num - 1 && fabs(t - td->data[j].time) > fabs(t - td->data[j+1].time))
+               while (j < td->num - 1 && fabs(t - td->data[j].time) >= fabs(t - td->data[j+1].time))
                        j++;
                pd->data[i] = td->data[j].value;
        }