Skip to content

Commit

Permalink
Fixed UI glitches
Browse files Browse the repository at this point in the history
  • Loading branch information
x committed Jan 4, 2023
1 parent d6a794f commit 1472a55
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ Reading <span style="font-weight: bold"></span><span style="font-weight: bold; c
Connection Parameters Request Procedure: <span style="font-weight: bold; color: #c35956">False</span>
Extended Reject Indication: <span style="font-weight: bold; color: #c35956">False</span>
Slave-initiated Features Exchange: <span style="font-weight: bold; color: #c35956">False</span>
LE Ping: <span style="font-weight: bold; color: #c35956">False</span>
LE Ping: <span style="font-weight: bold; color: #c35956">False</span>
LE Data Packet Length Extension: <span style="font-weight: bold; color: #9fab76">True</span>
LL Privacy: <span style="font-weight: bold; color: #c35956">False</span>
Extended Scanner Filter Policies: <span style="font-weight: bold; color: #c35956">False</span>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ Reading <span style="font-weight: bold"></span><span style="font-weight: bold; c
Connection Parameters Request Procedure: <span style="font-weight: bold; color: #c35956">False</span>
Extended Reject Indication: <span style="font-weight: bold; color: #c35956">False</span>
Slave-initiated Features Exchange: <span style="font-weight: bold; color: #c35956">False</span>
LE Ping: <span style="font-weight: bold; color: #c35956">False</span>
LE Ping: <span style="font-weight: bold; color: #c35956">False</span>
LE Data Packet Length Extension: <span style="font-weight: bold; color: #9fab76">True</span>
LL Privacy: <span style="font-weight: bold; color: #c35956">False</span>
Extended Scanner Filter Policies: <span style="font-weight: bold; color: #c35956">False</span>
Expand Down
2 changes: 1 addition & 1 deletion index-cn.html
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ <h4 class="mume-header" id="-ll-feature-set%E8%AF%BB%E5%8F%96%E8%BF%9C%E7%AB%AF-
Connection Parameters Request Procedure: <span style="font-weight: bold; color: #c35956">False</span>
Extended Reject Indication: <span style="font-weight: bold; color: #c35956">False</span>
Slave-initiated Features Exchange: <span style="font-weight: bold; color: #c35956">False</span>
LE Ping: <span style="font-weight: bold; color: #c35956">False</span>
LE Ping: <span style="font-weight: bold; color: #c35956">False</span>
LE Data Packet Length Extension: <span style="font-weight: bold; color: #9fab76">True</span>
LL Privacy: <span style="font-weight: bold; color: #c35956">False</span>
Extended Scanner Filter Policies: <span style="font-weight: bold; color: #c35956">False</span>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ <h4 class="mume-header" id="-ll-feature-set-read-ll-featureset-of-a-remote-le-de
Connection Parameters Request Procedure: <span style="font-weight: bold; color: #c35956">False</span>
Extended Reject Indication: <span style="font-weight: bold; color: #c35956">False</span>
Slave-initiated Features Exchange: <span style="font-weight: bold; color: #c35956">False</span>
LE Ping: <span style="font-weight: bold; color: #c35956">False</span>
LE Ping: <span style="font-weight: bold; color: #c35956">False</span>
LE Data Packet Length Extension: <span style="font-weight: bold; color: #9fab76">True</span>
LL Privacy: <span style="font-weight: bold; color: #c35956">False</span>
Extended Scanner Filter Policies: <span style="font-weight: bold; color: #c35956">False</span>
Expand Down
2 changes: 1 addition & 1 deletion src/bluing/le/le_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def pp_le_feature_set(features: bytes):
print(' Connection Parameters Request Procedure:', green('True') if (b >> 1) & 0x01 else red('False'))
print(' Extended Reject Indication:', green('True') if (b >> 2) & 0x01 else red('False'))
print(' Slave-initiated Features Exchange:', green('True') if (b >> 3) & 0x01 else red('False'))
print(' LE Ping: ', green('True') if (b >> 4) & 0x01 else red('False'))
print(' LE Ping:', green('True') if (b >> 4) & 0x01 else red('False'))
print(' LE Data Packet Length Extension:', green('True') if (b >> 5) & 0x01 else red('False'))
print(' LL Privacy:', green('True') if (b >> 6) & 0x01 else red('False'))
print(' Extended Scanner Filter Policies:', green('True') if (b >> 7) & 0x01 else red('False'))
Expand Down

0 comments on commit 1472a55

Please sign in to comment.