mirror of
https://gitlab.steamos.cloud/holo/steamos-manager.git
synced 2025-07-15 10:46:41 -04:00
wifi: Add method for generating and capturing an ath11k dump
This commit is contained in:
parent
7b7afffc46
commit
54351414fa
8 changed files with 210 additions and 5 deletions
|
@ -27,6 +27,7 @@ mod tdp_limit1;
|
|||
mod update_bios1;
|
||||
mod update_dock1;
|
||||
mod wifi_debug1;
|
||||
mod wifi_debug_dump1;
|
||||
mod wifi_power_management1;
|
||||
pub use crate::proxy::ambient_light_sensor1::AmbientLightSensor1Proxy;
|
||||
pub use crate::proxy::cpu_scaling1::CpuScaling1Proxy;
|
||||
|
@ -41,6 +42,7 @@ pub use crate::proxy::tdp_limit1::TdpLimit1Proxy;
|
|||
pub use crate::proxy::update_bios1::UpdateBios1Proxy;
|
||||
pub use crate::proxy::update_dock1::UpdateDock1Proxy;
|
||||
pub use crate::proxy::wifi_debug1::WifiDebug1Proxy;
|
||||
pub use crate::proxy::wifi_debug_dump1::WifiDebugDump1Proxy;
|
||||
pub use crate::proxy::wifi_power_management1::WifiPowerManagement1Proxy;
|
||||
|
||||
// Sub-interfaces
|
||||
|
|
24
src/proxy/wifi_debug_dump1.rs
Normal file
24
src/proxy/wifi_debug_dump1.rs
Normal file
|
@ -0,0 +1,24 @@
|
|||
//! # D-Bus interface proxy for: `com.steampowered.SteamOSManager1.WifiDebugDump1`
|
||||
//!
|
||||
//! This code was generated by `zbus-xmlgen` `5.0.1` from D-Bus introspection data.
|
||||
//! Source: `com.steampowered.SteamOSManager1.xml`.
|
||||
//!
|
||||
//! You may prefer to adapt it, instead of using it verbatim.
|
||||
//!
|
||||
//! More information can be found in the [Writing a client proxy] section of the zbus
|
||||
//! documentation.
|
||||
//!
|
||||
//!
|
||||
//! [Writing a client proxy]: https://dbus2.github.io/zbus/client.html
|
||||
//! [D-Bus standard interfaces]: https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces,
|
||||
use zbus::proxy;
|
||||
#[proxy(
|
||||
interface = "com.steampowered.SteamOSManager1.WifiDebugDump1",
|
||||
default_service = "com.steampowered.SteamOSManager1",
|
||||
default_path = "/com/steampowered/SteamOSManager1",
|
||||
assume_defaults = true
|
||||
)]
|
||||
pub trait WifiDebugDump1 {
|
||||
/// GenerateDebugDump method
|
||||
fn generate_debug_dump(&self) -> zbus::Result<String>;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue