From daf9c0bda30cfc13ac07e020b0edd1a2a19831db Mon Sep 17 00:00:00 2001 From: grammers <samkar-4@student.ltu.se> Date: Thu, 15 Feb 2018 00:39:55 +0000 Subject: [PATCH] bare6: task 6 --- examples/bare6.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/examples/bare6.rs b/examples/bare6.rs index 6e60f18..23b6ea6 100644 --- a/examples/bare6.rs +++ b/examples/bare6.rs @@ -62,7 +62,7 @@ fn clock_out(rcc: &mut RCC, gpioc: &mut GPIOC) { // ospeedr 0d00 = low speed gpioc .ospeedr - .modify(|_, w| unsafe { w.ospeedr9().bits(0b11) }); + .modify(|_, w| unsafe { w.ospeedr9().bits(0b00) }); } // user application @@ -193,12 +193,15 @@ fn idle(dwt: &mut DWT, rcc: &mut RCC, gpioa: &mut GPIOA) { // // did the frequency change in comparison to assignment 5. // ** your answer here ** +// no only mor stabile 225 KHz // // what is the peak to peak reading of the signal // ** your answer here ** -// +// 1.6 V way higher +// // why does it differ? // ** your answer here ** +// With low speed do the controler manige to bake the changes in tiome and acurat // // make a screen dump or photo of the oscilloscope output // sove the the picture as "bare_6_84mhz_low_speed" -- GitLab