Javier Cardona

Results 38 comments of Javier Cardona

Hi @ddodge40, Are you still trying to resolve the pressure sensor issues ("Errors running pressure sensor test") or is this something else? The output you pasted shows two problems: 1....

Yes, you need at least one .sf file, as that is where the sound samples come from. See https://github.com/jcard0na/haxo-rs/issues/10 for suggestions on how to get files. Javier On Mon, 24...

FWIW, I am also sharing SPI between `spi-memory` and `edp-waveshare` and had to deal with this issue. `share-bus` allowed me to work around this, but would prefer a consistent use...

I encountered the same issue. To repro, one just needs to modify [this line in the adc example](https://github.com/stm32-rs/stm32l0xx-hal/blob/master/examples/adc.rs#L14) to use the MSI clock: ```patch - let mut rcc = dp.RCC.freeze(Config::hsi16());...

Well, finally made it work, but was not very ergonomic. Documenting here for my future self or for others in the same pickle... ```rust // Enable ADC clock. This is...

Hi @kpishere (You might have moved on to other projects, but just in case this still interests you...) I've also had to tweak the build in order to compile these...

For those using STM32, I found that the [usb-device project](https://github.com/rust-embedded-community/usb-device) had example code and better documentation. I got [this example](https://github.com/stm32-rs/stm32l0xx-hal/blob/master/examples/usb_serial.rs) running on my board in minutes. So I think I...