]> Git Repo - qemu.git/commitdiff
STM32F2xx: Display PWM duty cycle from timer
authorAlistair Francis <[email protected]>
Tue, 4 Oct 2016 12:28:07 +0000 (13:28 +0100)
committerPeter Maydell <[email protected]>
Tue, 4 Oct 2016 12:28:07 +0000 (13:28 +0100)
If correctly configured allow the STM32F2xx timer to print
out the PWM duty cycle information.

Signed-off-by: Alistair Francis <[email protected]>
Reviewed-by: Peter Crosthwaite <[email protected]>
Message-id: cdb59039a25e061615713a94b40797baa12ea9f9.1474742262[email protected]
Signed-off-by: Peter Maydell <[email protected]>
hw/timer/stm32f2xx_timer.c

index bf0fb288c434c2196e074bd4289e05f184680d6a..8c4c1f9f05534034cc063ce4fb82ada3ef22d5c5 100644 (file)
@@ -51,6 +51,15 @@ static void stm32f2xx_timer_interrupt(void *opaque)
         qemu_irq_pulse(s->irq);
         stm32f2xx_timer_set_alarm(s, s->hit_time);
     }
+
+    if (s->tim_ccmr1 & (TIM_CCMR1_OC2M2 | TIM_CCMR1_OC2M1) &&
+        !(s->tim_ccmr1 & TIM_CCMR1_OC2M0) &&
+        s->tim_ccmr1 & TIM_CCMR1_OC2PE &&
+        s->tim_ccer & TIM_CCER_CC2E) {
+        /* PWM 2 - Mode 1 */
+        DB_PRINT("PWM2 Duty Cycle: %d%%\n",
+                s->tim_ccr2 / (100 * (s->tim_psc + 1)));
+    }
 }
 
 static inline int64_t stm32f2xx_ns_to_ticks(STM32F2XXTimerState *s, int64_t t)
This page took 0.026804 seconds and 4 git commands to generate.