summaryrefslogtreecommitdiffstats
path: root/stm32/app/hands.c
diff options
context:
space:
mode:
Diffstat (limited to 'stm32/app/hands.c')
-rw-r--r--stm32/app/hands.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/stm32/app/hands.c b/stm32/app/hands.c
index 8261b1b..f1543ac 100644
--- a/stm32/app/hands.c
+++ b/stm32/app/hands.c
@@ -88,6 +88,7 @@ void hands_tick (void)
m = time_to_metric (e, u);
+#if 0
hands_pos[0] = calc_hour_pos (&m);
if ((e.s & 31) <5) {
@@ -95,10 +96,16 @@ if ((e.s & 31) <5) {
} else {
hands_pos[1] = calc_minute_pos (&m);
}
+#endif
+
+ hands_pos[0] = calc_second_pos (&m);
+ hands_pos[1] = calc_minute_pos (&m);
+
//hands_pos[1] = calc_second_pos (&m);
hands_ready = 1;
+#if 0
for (i = 0, p = 0; i < HANDS; ++i) {
if (hands_pos[i] != old_pos[i]) p++;
@@ -112,5 +119,6 @@ if ((e.s & 31) <5) {
time_print_metric ("Metric: ", &m, NULL);
printf ("Hands: hour %4d/%4d min %4d/%4d\r\n", hands_pos[0], MOTOR_STEPS, hands_pos[1], MOTOR_STEPS);
}
+#endif
}