some more fixes
All checks were successful
EIVE/-/pipeline/head This commit looks good

This commit is contained in:
2024-05-08 10:49:20 +02:00
parent 5cf76c07e9
commit dccbf89da1
23 changed files with 100 additions and 119 deletions

View File

@ -78,12 +78,13 @@ def pack_pdec_handler_commands(
pw = int(input("Specify positive window to set: "))
q.add_pus_tc(
create_load_param_cmd(
create_scalar_u8_parameter(
parameter=create_scalar_u8_parameter(
object_id,
0,
ParameterId.POSITIVE_WINDOW,
pw,
)
),
apid=0,
)
)
if cmd_str == OpCode.NEGATIVE_WINDOW:
@ -91,12 +92,13 @@ def pack_pdec_handler_commands(
nw = int(input("Specify negative window to set: "))
q.add_pus_tc(
create_load_param_cmd(
create_scalar_u8_parameter(
parameter=create_scalar_u8_parameter(
object_id,
0,
ParameterId.NEGATIVE_WINDOW,
nw,
)
),
apid=0,
)
)
if cmd_str == OpCode.RESET_NO_INIT: