Linus Leo Stöckli
Linus Leo Stöckli
Then I'm probably using it wrong (freeRTOS)... ```rust use embedded_hal_bus::i2c; ``` ```rust // initialize i2c1 let scl = gpiob.pb6; let sda = gpiob.pb7; let i2c1 = dp.I2C1.i2c( (scl, sda), i2cMode::Standard...
@rursprung I'm creating a RefCellDevice in the constructor calls for the Devices: ```rust use embedded_hal_bus::i2c; i2c::RefCellDevice::new(&i2c_ref_cell) ``` Thanks, I'll look into the matrix room.
Hello, thanks for your input! So you want to set for each Column/Dataset in which plot this should be displayed? This would be possible and I agree that the current...
Thanks, I managed to create an update method that takes care of this. I had to implement the unzipping myself without using the built-in of `self-replace` because the built-in can...
I noticed that this was much less of a problem in earlier `egui` releases. For example with 0.29 the frame calculation time was only about 0.5 ms and with 0.20...
by introducing this in the `update()` function it reduces the CPU load: ```rust thread::sleep(Duration::from_secs_f64(1.0 / 60.0)); ``` but this seems kind of hacky...
I conducted some tests for different egui versions. It appears that the issue occurs after `0.23.0`. I noticed that before, when the app is moved to the background, the fps...
@lucasmerlin can you confirm my findings about the possible performance regression? Are there any mechanisms in egui to track the performance before/after new releases? If this is actually a performance...
An inspiration: https://github.com/neovide/neovide/blob/38fd9d75419dc00dd2733965f7aa753d759021af/src/window/macos.rs#L512
Okay so by changing the function inside egui to this: ```rust /// Set icon & app title for `MacOS` applications. #[cfg(target_os = "macos")] #[allow(unsafe_code)] fn set_title_and_icon_mac(title: &str, icon_data: Option) ->...