From 112f2dbe498f62fa66962ea230e54f44da9486e1 Mon Sep 17 00:00:00 2001 From: Leonard Yu Date: Thu, 30 Nov 2023 15:25:05 +0100 Subject: [PATCH] Add i2c frequence min and max --- xoa_driver/internals/commands/p_commands.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xoa_driver/internals/commands/p_commands.py b/xoa_driver/internals/commands/p_commands.py index 5ba87bf3..1164aef0 100644 --- a/xoa_driver/internals/commands/p_commands.py +++ b/xoa_driver/internals/commands/p_commands.py @@ -549,6 +549,10 @@ class GetDataAttr(ResponseBodyStruct): """minimum step size for latency histograms.""" latency_histogram_step_max: int = field(XmpInt(), min_version=457) """maximum step size for latency histograms.""" + min_i2c_frequency: int = field(XmpInt(), min_version=463) + """minimum I2C frequency""" + max_i2c_frequency: int = field(XmpInt(), min_version=463) + """maximum I2C frequency""" def get(self) -> Token[GetDataAttr]: