diff --git a/examples/bare7.rs b/examples/bare7.rs index 0d21b94193ed89fc1fae09b4a0eae893102ad117..d20590521ee9f904b959f2ea51ece48ed53aed17 100644 --- a/examples/bare7.rs +++ b/examples/bare7.rs @@ -52,7 +52,7 @@ fn main() -> ! { .unwrap(); let gpioc = p.GPIOC.split(); - gpioc.pc9.into_alternate_af0().set_speed(hal::gpio::Speed::VeryHigh); + gpioc.pc9.into_alternate_af0().set_speed(hal::gpio::Speed::Low); // Separate out the sender and receiver of the serial port let (mut tx, mut rx) = serial.split(); @@ -169,11 +169,11 @@ fn main() -> ! { // // Did the frequency change in comparison to assignment 5? // -// ** your answer here ** +// Yes, it became very unreadable // // What is the peak to peak reading of the signal (and why did it change)? // -// ** your answer here ** +// It was varying a lot but the one that was aquired when taking the screendump was 71 mV. // // Make a screen dump or photo of the oscilloscope output. // Save the the picture as "bare_6_84mhz_low_speed". diff --git a/pictures/bare_7_84mhz_low_speed.png b/pictures/bare_7_84mhz_low_speed.png new file mode 100644 index 0000000000000000000000000000000000000000..d4170ebdbe460a9628628fb83093638ad9ce0adf Binary files /dev/null and b/pictures/bare_7_84mhz_low_speed.png differ