Thomas Schaller
Thomas Schaller
Many methods of `EspNetif` are not exposed, such as setters and dhcp control. Without this, the ip configuration of an established connection cannot be changed.
If I restrict threads to run on CPU0: ```ini CONFIG_ESP_MAIN_TASK_AFFINITY=CPU0 CONFIG_PTHREAD_TASK_CORE_DEFAULT=0 CONFIG_PTHREAD_DEFAULT_CORE_0=y ``` the `AsyncEspTls::negotiate` won't become ready. I would expect the main thread (`async_io::block_on`) to yield at some point...
As documented [here](https://github.com/esp-rs/esp-idf-sys/blob/master/BUILD-OPTIONS.md#esp_idf_components-esp_idf_components-native-builder-only), extra components require inclusion into `esp_idf_components`, but if `esp_idf_compoents` is present it acts as a filter for all built components. Interestingly, this doesn't apply to remotely managed...
esp-idf-sys version: 0.34.1 esp-idf: 5.2.1 After upgrading esp-idf to 5.2.1 (from 5.1.3), the `tskNO_AFFINITY` symbol is no longer available. Not quite sure why, might be a bindgen issue because the...
I think it should be version controlled since it's a binary project, not a library.
```rust #[derive(Default, PartialEq, Debug, YaSerialize, YaDeserialize)] #[yaserde()] pub struct Example { #[yaserde(attribute, rename = "Version")] pub version: xsd::UnsignedInt, #[yaserde(attribute, rename = "PlatformType")] pub platform_type: xsd::String, } ``` I assumed these...
The example does not make much sense for typedefs, because in this case they really are both the same types.
I've tried to build a project for Android and it tried to link to `xcb`. Turns out this library depends on xcb :) Is Android support planned and if not,...
Hey @antoyo, thanks for this library! Do you think it would make sense to add an example showing how to create a `gtk::Dialog` using the `view!` macro? In particular, I'm...