Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wid: pr #51

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autopts/wid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# test
from typing import NamedTuple

from .wid import generic_wid_hdl
Expand Down
1 change: 1 addition & 0 deletions autopts/wid/gatt_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def gatt_cl_wid_hdl(wid, description, test_case_name):
#TODO: port all GATT wids to GATT Client service
# wid handlers section begin
def hdl_wid_1(_: WIDParams):
#test
"""
Please prepare IUT into a connectable mode.

Expand Down
1 change: 1 addition & 0 deletions autopts/wid/gtbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ def gtbs_wid_hdl(wid, description, test_case_name):
# wid handlers section begin
def hdl_wid_1(params: WIDParams):
# Example WID
#test

return True
1 change: 1 addition & 0 deletions autopts/wid/mics.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def mics_wid_hdl(wid, description, test_case_name):
def hdl_wid_20001(_: WIDParams):
"""Please prepare IUT into a connectable mode. Verify that the
Implementation Under Test (IUT) can accept GATT connect request from PTS."""
#test
stack = get_stack()
btp.gap_set_conn()
btp.gap_adv_ind_on(ad=stack.gap.ad)
Expand Down
Loading