Ass model_baudrate_table
This commit is contained in:
parent
e33ca2c980
commit
ad0bacbfe4
|
@ -244,7 +244,8 @@ class DynamixelMotorsBus(MotorsBus):
|
|||
"""
|
||||
|
||||
model_ctrl_table = deepcopy(MODEL_CONTROL_TABLE)
|
||||
model_resolution = deepcopy(MODEL_RESOLUTION)
|
||||
model_resolution_table = deepcopy(MODEL_RESOLUTION)
|
||||
model_baudrate_table = deepcopy(MODEL_BAUDRATE_TABLE)
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
|
|
|
@ -257,7 +257,8 @@ class FeetechMotorsBus(MotorsBus):
|
|||
"""
|
||||
|
||||
model_ctrl_table = deepcopy(MODEL_CONTROL_TABLE)
|
||||
model_resolution = deepcopy(MODEL_RESOLUTION)
|
||||
model_resolution_table = deepcopy(MODEL_RESOLUTION)
|
||||
model_baudrate_table = deepcopy(MODEL_BAUDRATE_TABLE)
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
|
|
|
@ -168,6 +168,7 @@ class MotorsBus(abc.ABC):
|
|||
|
||||
model_ctrl_table: dict[str, dict]
|
||||
model_resolution_table: dict[str, int]
|
||||
model_baudrate_table: dict[str, dict]
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
|
|
Loading…
Reference in New Issue