Edwin

Results 67 comments of Edwin

We also use a lot of stored procedures. I've made a convenience wrapper for stored procedures specifically. It does not solve the out-parameter problem though. ```rust #[derive(Debug)] pub struct MyConnectionWrapper(Client);...

I'd love to see support for Borland/Embarcadero compilers. The Community Edition could work but I guess this would be considered commercial use. I think [Ian Barker](https://blogs.embarcadero.com/chief-developer-advocate-and-engineer-jim-mckeeth-moves-to-new-role/) would be right person...

I think I ran in to this when I started my Arduino H7 project. I'm running at 480MHz but I'm specifying that USB should use the HSI48 clock source which...

The file you download from suppliers (Mouser, Digikey, ...) do not actually contain the components. The zip file only contains an ID and the actual files have to be downloaded...

I think this would be a good change. It'd also be nice to implement FAT support for EMMC.

I think it would make more sense to migrate to e-h 1.0.0 as soon as possible to encourage/allow driver/lib authors to also update their crates to 1.0.0. You can always...

My `build.rs` looks something like this: ```rs fn main() { output_dir(); gen(); match std::env::var("CARGO_CFG_TARGET_OS").unwrap().as_str() { "linux" | "macos" => { /* Nothing to do here */ } // If building...