Russ Martelli

Results 6 comments of Russ Martelli

``` 0.000000 DEBUG rcc: Clocks { sys: Hertz(48000000), apb1: Hertz(24000000), apb1_tim: Hertz(48000000), apb2: Hertz(24000000), apb2_tim: Hertz(48000000), ahb1: Hertz(48000000), adc: None, adc34: None } └─ C:\dev\embedded\embassy\embassy-stm32\src\fmt.rs:130 0.000335 INFO Hello World! └─...

I'll order another usb cable and try that. I tried disabling and re-enabling the USB device in device manager, and one time it worked. It showed up as COM7 and...

I got it working... sort of. I adapted the code from here: https://github.com/embassy-rs/embassy/blob/main/examples/nrf52840/src/bin/usb_serial_winusb.rs In the examples for stm32f3, there is only the usb_serial.rs. I didn't realize that windows has special...

I got a second usb cable at walmart. Here's the log: ``` 0.000000 DEBUG rcc: Clocks { sys: Hertz(48000000), apb1: Hertz(24000000), apb1_tim: Hertz(48000000), apb2: Hertz(24000000), apb2_tim: Hertz(48000000), ahb1: Hertz(48000000), adc:...

I also tried copying the TLS example exactly. I get this error when using native-tls: `IOError(Custom { kind: AlreadyExists, error: "already a TLS stream" })` I'm copying the example from...

Problem solved. Here's the updated code: ``` let connect = move |uri: &AMQPUri| { let conn = uri.connect().and_then(|stream| { let connector = RustlsConnector::new_with_native_certs().unwrap(); // Perform here your custom TLS setup,...