Skip to content

Commit

Permalink
zephyr: Fix pixit name
Browse files Browse the repository at this point in the history
After updating workspace to PTS 8.7.2 the TSPX_inmtu is renamed to
TSPX_l2ca_inmtu. Fixes the exception:

xmlrpc.client.Fault: <Fault 1: "<class 'autopts.ptscontrol.BadPixitException'>:
    L2CAP TSPX_inmtu 02A0:\nPTSCONTROL_E_PIXIT_PARAM_NOT_FOUND">
  • Loading branch information
mkasenberg authored and sjanc committed Oct 15, 2024
1 parent 642836d commit 613710d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autopts/ptsprojects/zephyr/l2cap.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def set_pixits(ptses):
pts.set_pixit("L2CAP", "TSPX_pin_code", "0000")
pts.set_pixit("L2CAP", "TSPX_delete_ltk", "FALSE")
pts.set_pixit("L2CAP", "TSPX_flushto", "FFFF")
pts.set_pixit("L2CAP", "TSPX_inmtu", "02A0")
pts.set_pixit("L2CAP", "TSPX_l2ca_inmtu", "02A0")
pts.set_pixit("L2CAP", "TSPX_no_fail_verdicts", "FALSE")
pts.set_pixit("L2CAP", "TSPX_iut_supported_max_channels", "5")
pts.set_pixit("L2CAP", "TSPX_IUT_mps", "0030")
Expand Down

0 comments on commit 613710d

Please sign in to comment.