Alexander Hübener

Results 9 issues of Alexander Hübener

executed command: ``` cargo size --release --verbose -Z unstable-options ``` verbose output: ``` "/usr/local/rustup/toolchains/nightly-2022-06-15-x86_64-unknown-linux-gnu/bin/cargo" "build" "--release" "--message-format=json" error: the `--out-dir` flag is unstable, pass `-Z unstable-options` to enable it See...

bug

I try to use `routerify` without `crate mio` which is a dependency of `tokio` and `hyper` with the `tcp` feature. On my `esp32c3` `mio` is not patched, so I have...

When I use the `EthDriver` with `Dma::Disabled`, an error as follows is logged and for example a ping does not succeed. ``` I (2474) esp_idf_svc::ping: Ping timeout callback invoked I...

After sys loop and eth driver dropped the board panics as follows: code ```rust fn main() -> Result { esp_idf_sys::link_patches(); // Bind the log crate to the ESP Logging facilities...

IDF-VERSION: v4.4 esp-idf-svc: master I have the following calling sequence: ```rust let mut wifi_driver = ...; smol::block_on(async move { let mut sub_1 = sysloop.as_async().subscribe::().unwrap(); // for other logic wifi_driver.set_configuration(&Configuration::AccessPoint( AccessPointConfiguration::default(),...

closes #388 ## Interface ### Sync ```rust let config = Config { pub pullup_enabled: bool, pub source_clock: SourceClock, pub glitch_ignore_cnt: u8, }; let driver = I2cDriver::new(..., config); let config =...

[i2c Driver Docs](https://docs.espressif.com/projects/esp-idf/en/release-v5.2/esp32/api-reference/peripherals/i2c.html) The driver APIs have been clearly divided into master and slave, with all calls now separated into `i2c_master_*` and `i2c_slave_*`. This provides a higher-level interface for the...

Required impls for https://github.com/esp-rs/esp-idf-svc/pull/186.

When I saw the Arduino API, I thought of having the same here in Rust. I think that could be possible. The main thoughts were on how we subscribe to...

help wanted
feature